Kitchen Sink
One page exercising the full range of Markdown syntax, for theme testing.
Heading level 1
Heading level 2
Heading level 3
Heading level 4
Heading level 5
Heading level 6
A paragraph with bold text, italic text, strikethrough, and inline code. Here's a link to the Flowershow site and a footnote reference.1
Lists
- Unordered item one
- Unordered item two
- Nested item
- Another nested item
- Unordered item three
- Ordered item one
- Ordered item two
- Nested ordered item
- Ordered item three
- An unchecked task
- A checked task
Blockquote
A blockquote spanning multiple lines, to check quote styling.
With a second paragraph inside it.
Code
Inline code in a sentence.
function greet(name) {
// a comment, to check syntax highlighting
return `Hello, ${name}!`;
}
def greet(name: str) -> str:
return f"Hello, {name}!"
Table
| Feature | Supported | Notes |
|---|---|---|
| Callouts | Yes | See below |
| Footnotes | Yes | See reference above |
| Tables | Yes | This one |
| Math | Maybe | Theme-dependent |
Callouts
Note
This is a note callout.
Tip
This is a tip callout.
Warning
This is a warning callout.
Danger
This is a danger callout.
Success
This is a success callout.
Example
This is an example callout.
Quote
This is a quote-style callout.
Image
Horizontal rule
Text after a horizontal rule, to check spacing.
Footnotes
-
This is the footnote content. ↩