mirror of
https://github.com/tstack/lnav
synced 2024-11-15 18:13:10 +00:00
50e895c289
Some markdown-related changes as well
1.4 KiB
1.4 KiB
{ "comment": "This is JSON front-matter" }
Table of Contents
Test
- One
- Two
- Three
Bold red
Underline
Hello,
World!
Goodbye, World!
foo bar bar
baz "xyz"
/*
* This program prints "Hello, World!"
*/
#include <stdio.h>
int main() {
printf("Hello, World!\n");
}
def hw(name):
"""
This function prints "Hello, <name>!"
"""
print(f"Hello, {name}!") # test comment
<?xml version="1.0" encoding="utf-8" ?>
<books>
<!-- Line comment -->
<book id="100">
<author>Finnegan</author>
</book>
</books>
Github Alerts
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.