diff options
Diffstat (limited to '')
-rw-r--r-- | test/textfile_0.md | 51 |
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> +``` |