Description | Markdown | Example | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
h1 |
#h1 | h1 |
||||||||
h2 |
##h2 | h2 |
||||||||
h3 |
###h3 | h3 |
||||||||
h4 |
####h4 | h4 |
||||||||
h5 |
#####h5 | h5 |
||||||||
h6 |
######h6 | h6 |
||||||||
heading-id |
###My Great Heading {#custom-id} | My Great Heading |
||||||||
hr |
___ | |||||||||
hr |
--- | |||||||||
hr |
*** | |||||||||
strong |
**This is bold Text** | This is bold Text |
||||||||
strong |
__This is bold Text__ | This is bold Text |
||||||||
em |
_This is italic Text_ | This is italic Text |
||||||||
strike |
~~StrikeThrough~~ |
|
||||||||
blockquote |
> Blockquote | Blockquote |
||||||||
nested blockquote |
> Blockquote >> Blockquote > > > Blockquote |
BlockquoteBlockquoteBlockquote |
||||||||
ul |
+ Create a list by starting a line with +, -, or * |
|
||||||||
ol |
i. Lorem ipsum dolor sit amet 2. Consectetur adipiscing elit 3. Integer molestie lorem at massa |
|
||||||||
inline-link |
[I'm an inline-style link](https://www.google.com) | |||||||||
link-only |
https://www.google.com | |||||||||
inline-image |
 | |||||||||
reference-image |
![alt text][logo] [logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 2' |
|||||||||
inline-code |
Inline `code` has `back-ticks around` it. | Inline |
||||||||
block-code |
``` Sample Text Here ``` |
|
||||||||
syntax-highlighting |
```js var foo = function (bar) { return bar++; }; console.log(foo(5)); ``` |
|
||||||||
table |
| 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. | |
|
||||||||
typographic-replacement |
"(c)", "(C)", "(r)", "(R)", "(tm)", "(TM)", "(p)", "(P)", "+-" | © © ® ® ™ ™ § § ± |
||||||||
superscript |
19^th^ | 19th |
||||||||
subscript |
H~2~0 | H20 |
||||||||
mark |
==MARK== | MARK |
||||||||
inserted-text |
++INSERTED TEXT++ | INSERTED TEXT |
||||||||
abbreviation |
The HTML specification is maintained by the W3C. The abbreviation ML is contained in the abbreviation HTML. *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium *[ML]: Markup Language |
The HTML specification is maintained by the W3C. The abbreviation ML is contained in the abbreviation HTML. |
||||||||
footnote |
Footnote 1 link[^first]. Footnote 2 link[^second]. [^first]: Footnote **can have markup** [^second]: Footnote text. |
|||||||||
dt |
Term 1 : Definition 1 with lazy continuation. : Definition 2 continuation |
|