Back to Edit

H1

assets/highlighting-tests/markdown.md

2.0.01.6 KB
Original Source

H1

H2

H3

H4

H5
H6

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
  • Task list:
    • To do
    • Done
    • Mixed formatting with code
  1. Ordered can start anywhere
  2. …like here (intentional)
    1. Nested ordered
    2. Multiple paragraphs within a list item: Still the same item.

A single-level quote

A nested quote with bold and code

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"

LeftCenterRight
italiccode123
boldstrike4.56
[link][ref]:tada:end
bash
# Shell
echo "Hello, world" | tr a-z A-Z
javascript
export function greet(name) {
  return `hello ${name}`;
}
json
{
  "name": "gfm-kitchen-sink",
  "private": true,
  "scripts": { "test": "echo ok" }
}
python
def greet(name: str) -> str:
    return f"hello {name}"

Footnotes

  1. This is a footnote with formatting and a link.