title | category | prism_languages | updated | weight | |
---|---|---|---|---|---|
Markdown |
Markup |
|
2020-07-01 |
-1 |
{:.-three-column}
# h1
## h2
### h3
#### h4
##### h5
###### h6
Header 1
========
Header 2
--------
*italic*
_italic_
**bold**
__bold__
***bold italic***
___bold italic___
~~strikethrough~~
`code`
* Item 1
* Nested Item 1
* Item 2
- Item 1
- Nested Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2
[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>


![Image alt text][img]
[img]: http://foo.com/img.jpg
`inline code`
4 space indent
makes a code block
```
code fences
```
```js
codeFences.withLanguage()
```
> This is
> a blockquote
>
> > Nested
> > Blockquote
----
****
| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content | Other content |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content