2022-09-21 03:07:44 +00:00
|
|
|
{
|
|
|
|
"comment": "This is JSON front-matter"
|
|
|
|
}
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
|
|
|
* One
|
|
|
|
* Two
|
|
|
|
* Three
|
2023-07-28 04:50:12 +00:00
|
|
|
|
2023-08-25 04:10:54 +00:00
|
|
|
<img src="../docs/lnav-tui.png" />
|
|
|
|
|
|
|
|
<img src="../docs/lnav-architecture.png" alt="The internal architecture of lnav" />
|
|
|
|
|
2023-07-28 04:50:12 +00:00
|
|
|
<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>
|
2023-07-28 06:16:40 +00:00
|
|
|
|
|
|
|
Goodbye, <span style="border-left: solid cyan; border-right: dashed green">World</span>!
|
2023-08-18 04:31:28 +00:00
|
|
|
|
|
|
|
```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>
|
|
|
|
```
|