summaryrefslogtreecommitdiffstats
path: root/test/textfile_0.md
blob: 7bda8e1a167023f604c12b16ea00b4c8f69ea072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
   "comment": "This is JSON front-matter"
}

## Test

* 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>
```