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~~

StrikeThrough

blockquote

> Blockquote

Blockquote

nested blockquote

> Blockquote
>> Blockquote
> > > Blockquote

Blockquote
Blockquote
Blockquote

ul

+ Create a list by starting a line with +, -, or *

  • 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

  1. 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)

I'm an inline-style link

link-only

https://www.google.com

https://www.google.com

inline-image

![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 1')

alt text

reference-image

![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 2'

alt text

inline-code

Inline `code` has `back-ticks around` it.

Inline code has back-ticks around it.

block-code

```
Sample Text Here
```

Sample Text Here

syntax-highlighting

```js
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
```

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. |

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.

Footnote 1 link1.
Footnote 2 link2.


  1. Footnote can have markup 
  2. Footnote text. 

dt

Term 1

:   Definition 1 with lazy continuation.
:   Definition 2 continuation

Term 1
  Definition 1 with lazy continuation.
  Definition 2 continuation