2022-09-20 20:07:44 -07:00
{
2025-01-08 15:30:52 -08:00
"comment": "This is JSON front-matter"
2022-09-20 20:07:44 -07:00
}
2024-05-18 06:52:18 -07:00
# Table of Contents
2025-01-09 12:43:20 -08:00
- [Table of Contents ](#table-of-contents )
- [Test ](#test )
- [Github Alerts ](#github-alerts )
2025-03-12 15:41:54 -07:00
- [Table][1]
[1]: #table
2024-05-18 06:52:18 -07:00
2022-09-20 20:07:44 -07:00
## Test
* One
* Two
* Three
2023-07-27 21:50:12 -07:00
2023-08-24 21:10:54 -07:00
<img src="../docs/lnav-tui.png" />
<img src="../docs/lnav-architecture.png" alt="The internal architecture of lnav" />
2023-07-27 21:50:12 -07:00
<span style="color: #f00 ; font-weight: bold">Bold red</span>
2025-01-09 12:43:20 -08:00
~~Strikethrough~~
* italic *
**bold **
_ underline _
2025-01-08 15:30:52 -08:00
<span style="text-decoration: underline; background-color: darkblue">
Underline</span>
2023-07-27 21:50:12 -07:00
<pre>
Hello,
<span class="name">World</span>!
</pre>
2023-07-27 23:16:40 -07:00
2025-01-08 15:30:52 -08:00
Goodbye, <span style="border-left: solid cyan; border-right: dashed green">
World</span>!
2023-08-17 21:31:28 -07:00
2025-08-14 11:01:35 -07:00
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<span style="white-space: nowrap">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span>
<span style="white-space: nowrap"><span style="color: green">Loooooooonnnnnnnggggg looooonnnnnnggggg maaaaaannnnnn</span></span>
2025-08-22 06:10:32 -07:00
<a name="custanchor"><span style="color: green">Loooooooonnnnnnnggggg looooonnnnnnggggg maaaaaannnnnn</span></a>
2025-08-14 11:01:35 -07:00
<span style="color: green">
**Nested Markdown **
</span>
2023-08-17 21:31:28 -07: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>! "
"""
2025-01-08 15:30:52 -08:00
print ( f " Hello, { name } ! " ) # test comment
2023-08-17 21:31:28 -07:00
```
``` xml
<?xml version="1.0" encoding="utf-8" ?>
<books >
2025-01-08 15:30:52 -08:00
<!-- Line comment -->
<book id= "100" >
<author > Finnegan</author>
</book>
2023-08-17 21:31:28 -07:00
</books>
```
2024-05-16 21:07:35 -07:00
2025-03-26 10:08:22 -07:00
~~~lnav
;SELECT * FROM syslog_log
:filter-out spam
~~~
2024-05-18 06:52:18 -07:00
## Github Alerts
2024-05-16 21:07:35 -07:00
> [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
2025-01-08 15:30:52 -08:00
2025-03-12 15:41:54 -07:00
## Blockquotes
> > He said
> She said
2025-03-08 06:38:36 -08:00
## Tasks
* [x] Bibimbap
* [x] Waffles
* [ ] Tacos
2025-01-08 15:30:52 -08:00
## Table
| ID | Name | Description |
|----:|:-----------:|---------------|
| 1 | One | The first |
| 2 | Two | The second |
| 3 | Three | The third |
| 4 | Four | The fourth |
| .. | .. | .. |
| 100 | One Hundred | The hundredth |
2025-01-09 12:43:20 -08:00
| abc | def |
|------------|-----|
| foo \| bar | ddd |
<table>
<tr>
<th>
Foo
</th>
<td>
Bar
</td>
</tr>
<tr>
<th>
Foo
</th>
<td>
Bar
</td>
</tr>
</table>