You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/test/textfile_0.md

61 lines
943 B
Markdown

{
"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>
```