Written by
kumqu
on
on
How To Use Markdown
Headers
H1
H2
H3
H4
H5
H6
Text formatting
- Bold
- Italics
Strikethrough- Underline
- Superscript
- Subscript
- Abbreviation: HTML
- Citation: — Chester How
Lists
- Ordered list item 1
- Ordered list item 2
- Ordered list item 3
- Unordered list item 1
- Unordered list item 2
- Unordered list item 3
Links
Check out tale on GitHub.
Images
This is an image with a caption
Code and Syntax Highlighting
Use back-ticks for inline code
. Multi-line code snippets are supported too through Pygments.
Adding linenos
to the Pygments tag enables line numbers.
1
2
3
// Sample javascript code
var s = "JavaScript syntax highlighting";
alert(s);
Blockquotes
Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.
Horizontal Rule & Line Break
Use <hr>
for horizontal rules
and <br>
for line breaks.
The end