Heading 1 |
# Heading 1 |
Heading 1
|
Heading 2 |
# Heading 2 |
Heading 2
|
Heading 3 |
# Heading 3 |
Heading 3
|
Heading 4 |
# Heading 4 |
Heading 4
|
Heading 5 |
# Heading 5 |
Heading 5
|
Heading 6 |
# Heading 6 |
Heading 6
|
Thematic Break |
*** |
|
Blockquotes |
> This is a blockquote |
This is a blockquote
|
Typographs |
(c) (R) (TM) (P) +- |
© ® ™ § ±
|
Bold |
**Bold text** |
Bold text
|
Italic |
*Italic text* |
Italic text
|
Strikethrough |
~~Deleted Text~~ |
Bold text
|
Superscript |
19^th^ |
19th
|
Subscript |
CO~2~ |
CO2
|
Underlined Text |
++Underline++ |
Underline
|
Highlighted Text |
==This is Highlighted== |
This is Highlighted
|
Unordered Lists |
+ List is started with `+`, `-`, or `*`
+ Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
* Ac tristique libero volutpat at
|
Ordered Lists |
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
1. You can use sequential numbers...
1. ...or keep all the numbers as `1.`
Start numbering with offset:
57. foo
1. bar
|
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
1. You can use sequential numbers...
1. ...or keep all the numbers as `1.`
Start numbering with offset:
57. foo
58. bar
|
Inline Code |
`code` |
code
|
Indented Code |
[4 spaces]This is code line one
[4 spaces]This is code line two
|
This
is code line one This is code line two
|
Fenced Code |
```
npm install markdownerr
```
|
npm install markdownerr
|
Code Syntax Highlighting |
```js
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
```
|
var foo = function (bar)
{
return bar++;
};
console.log(foo(5));
|
Tables |
| Option | Description |
| ------ | ----------- |
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
|
Option |
Description |
data |
path to data files to supply the data that will be passed into templates. |
engine |
engine to be used for processing templates. Handlebars is the default. |
ext |
extension to be used for dest files.
|
|
Links |
[link with title](http://nodeca.github.io/pica/demo/ "title text!") |
link with title
|
Autoconverted link |
Autoconverted link https://github.com/ |
Autoconverted link https://github.com/
|
Images |
![Minion](https://octodex.github.com/images/minion.png) |
|
Footnotes |
Footnote 1 link[^first].
Write code below wherever you want to add footnote content
[^first]: Footnote **can have markup** and multiple paragraphs.
|
Footnote 1 link[1]
Footnote will scroll automatically and look like this
Footnote can have markup and multiple paragraphs.
|
Definitions |
Term 1
: Definition 1 with lazy continuation.
|
Term 1
Definition 1 with lazy continuation
|
Abbreviations |
This is HTML abbreviation example.
It converts "HTML", but keep intact partial HTML entries like "xxxHTMLyyy" and so on.
*[HTML]: Hyper Text Markup Language
|
This is HTML abbreviation example.
It converts "HTML", but keep intact partial HTML entries like “xxxHTMLyyy” and so on.
|