Markdown sandbox
This is a test page for my markdown parser / renderer.
Horizontal Rule
Paragraphs
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
Emphasis
This is bold.
Thisisbold.
This is italic.
Thisisitalic.
Blockquotes
May the Force be with you.
Blockquote with Multiple Paragraphs
May the Force be with you.
Nested Blockquote
May the Force be with you.
Blockquote with Other Elements
- one
- two
- three
May the Force be with you.
Lists
- foo
- bar
- baz
- foo
- bar
- baz
- foo
- indented foo
- indented bar
- indented baz
- indented foo
- bar
- baz
- fooParagraph in List
- bar
Blockquote in List
- baz
Code
This is inline code
.
sh
echo "Hello, World!"
echo "May the Force be with you."
javascript
const hello = () => {
return "Hello, World!";
};
Link
Image
Table
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
Left-aligned | Center-aligned | Right-aligned |
---|---|---|
git status | git status | git status |
git diff | git diff | git diff |
HTML
Mermaid
graph TD A[Client] --http--> B[Load Balancer] B --> C[Server01] B --> D[Server02]