Markdown Cheat Sheet
Contents
Cheat Sheet for markdown writing.
Headings
1 | # h1 Heading |
h1 Heading
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
Horizontal Rules
1 | ___ |
Typographic replacements
1 | (c) (C) (r) (R) (tm) (TM) (p) (P) +- |
© © ® ® ™ ™ § § ±
Emphasis
1 | **This is bold text** |
This is bold text
This is bold text
This is italic text
This is italic text
Strikethrough
Blockquotes
1 | > Blockquotes can also be nested... |
Blockquotes can also be nested…
…by using additional greater-than signs right next to each other…
…or with spaces between arrows.
Unordered List
1 | + Create a list by starting a line with `+`, `-`, or `*` |
- Create a list by starting a line with
+
,-
, or*
- Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
- Ac tristique libero volutpat at
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Marker character change forces new list start:
- Very easy!
Image with footer
1 | ![Alt text][id] |
With a reference later in the document defining the URL location:
Subscript / Superscript
1 | Superscript: 19^th^ |
Superscript: 19th
Subscript: H2O
Footnotes
1 | Footnote 1 link[^first]. |
Footnote 1 link[1].
Footnote 2 link[2].
Hexo Built-in Tags
1 | {% jsfiddle o2gxgz9r default light %} |
Reference
This is the end of post