summaryrefslogtreecommitdiffstats
path: root/test/textfile_0.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-07 04:48:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-07 04:48:35 +0000
commit207df6fc406e81bfeebdff7f404bd242ff3f099f (patch)
treea1a796b056909dd0a04ffec163db9363a8757808 /test/textfile_0.md
parentReleasing progress-linux version 0.11.2-1~progress7.99u1. (diff)
downloadlnav-207df6fc406e81bfeebdff7f404bd242ff3f099f.tar.xz
lnav-207df6fc406e81bfeebdff7f404bd242ff3f099f.zip
Merging upstream version 0.12.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/textfile_0.md')
-rw-r--r--test/textfile_0.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/textfile_0.md b/test/textfile_0.md
index 377e46f..7bda8e1 100644
--- a/test/textfile_0.md
+++ b/test/textfile_0.md
@@ -7,3 +7,54 @@
* One
* Two
* Three
+
+<img src="../docs/lnav-tui.png" />
+
+<img src="../docs/lnav-architecture.png" alt="The internal architecture of lnav" />
+
+<span style="color: #f00; font-weight: bold">Bold red</span>
+
+<span style="text-decoration: underline; background-color: darkblue">Underline</span>
+
+<pre>
+ Hello,
+ <span class="name">World</span>!
+</pre>
+
+Goodbye, <span style="border-left: solid cyan; border-right: dashed green">World</span>!
+
+```foolang
+foo bar bar
+baz "xyz"
+```
+
+```c
+/*
+ * This program prints "Hello, World!"
+ */
+
+#include <stdio.h>
+
+int main() {
+ printf("Hello, World!\n");
+}
+```
+
+```python
+def hw(name):
+ """
+ This function prints "Hello, <name>!"
+ """
+
+ print(f"Hello, {name}!") # test comment
+```
+
+```xml
+<?xml version="1.0" encoding="utf-8" ?>
+<books>
+ <!-- Line comment -->
+ <book id="100">
+ <author>Finnegan</author>
+ </book>
+</books>
+```