Testing out Markdown
April 3, 2021•295 words
Hello Markdown
Headings
# h1
## h2
### h3
#### h4
##### h5
###### h6
h1
h2
h3
h4
h5
h6
Code
code fences
Code with Syntax Highlighting
codeFences.withLanguage()
Code with syntax highlighting does not work :(
Tables
| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content | Other content |
Column 1 Heading | Column 2 Heading |
---|---|
Some content | Other content |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content
Column 1 Heading | Column 2 Heading |
---|---|
Some content | Other content |
Emphasis
*italic*
_italic_
italic
italic
**bold**
__bold__
bold
bold
`code`
code
Links
[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>
Blockquotes
> This is
> a blockquote
>
> > Nested
> > Blockquote
This is
a blockquoteNested
Blockquote
Lists
* Item 1
* Item 2
- Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2
- Item 1
Item 2
Item 1
Item 2
[ ] Checkbox off
[x] Checkbox on
Checkboxes do not work :(
- Item 1
- Item 2
Horizontal lines
----
****
Images


![Image alt text][img]
[img]: https://media.giphy.com/media/L2HLAhT90v014dsxeI/giphy.gif