assets/highlighting-tests/markdown.md
regular
italic
italic
bold
bold
bold italic
bold italic
bold italic
strikethrough
inline code
`literal`
*not* _italic_ # not a heading
codeA 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: Reference: ![Logo][logo-ref] [logo-ref]: https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png "GitHub Logo"
| Left | Center | Right |
|---|---|---|
| italic | code | 123 |
| bold | 4.56 | |
| [link][ref] | :tada: | end |
# Shell
echo "Hello, world" | tr a-z A-Z
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}"