regular
italic
italic
bold
bold
bold italic
bold italic
bold italic
strikethrough
inline code
`literal`
*not* _italic_ # not a heading
- Unordered item
- Nested item
- Third level
- Nested item
- Task list:
- To do
- Done
- Mixed formatting with
code
- Ordered can start anywhere
- …like here (intentional)
- Nested ordered
- Multiple paragraphs within a list item: Still the same item.
A single-level quote
A nested quote with bold and
code
- List in a quote
- Link in quote
Inline: Example Reference: [Ref Link][ref] and [Another][another-ref] Relative: This section Footnote: 1 [ref]: https://example.com [another-ref]: https://github.com
Inline: 
| Left | Center | Right |
|---|---|---|
| italic | code |
123 |
| bold | 4.56 | |
| [link][ref] | 🎉 | end |
# Shell
echo "Hello, world" | tr a-z A-Z#include <stdio.h>
int main() {
printf("Hello, world\n");
return 0;
}#include <iostream>
int main() {
std::cout << "Hello, world" << std::endl;
return 0;
}export function greet(name) {
return `hello ${name}`;
}{
"name": "gfm-kitchen-sink",
"private": true,
"scripts": { "test": "echo ok" }
}def greet(name: str) -> str:
return f"hello {name}"