Markdown

Markdown

Headers

# H1
## H2
### H3...

Emphasis

*italic* or _italic_
**bold** or __bold__
***bold italic*** or ___bold italic___

Highlight

I am highlighted text.


{% include elements/highlight.html text="I am highlighted text." %}


Blockquotes

> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.

Quote break.
[link text](http://example.com)

Horizontal Rule

___
---
***

Code

`code`

Syntax Highlighting

def foo():
    if not bar:
        return True

Ordered List

1. First ordered list item
2. Another item
   * Unordered sub-list. 
1. Actual numbers don't matter, just that it's a number
   1. Ordered sub-list
4. And another item.  
   Some text that should be aligned with the above item.

Unordered List

* Unordered list can use asterisks
- Or minuses
+ Or pluses

List Group


{% capture list_items %}
Google,https://www.google.com
GitHub,https://www.github.com
{% endcapture %}
{% include elements/list.html title="Websites" %}


TOC


{% capture list_items %}
Headers
Emphasis
List
{% endcapture %}
{% include elements/list.html title="Table of Contents" type="toc" %}


Image

![alt text](https://bit.ly/2TOsM7B "Building Image")

Figures

The Ocean
The Ocean

{% include elements/figure.html image="https://bit.ly/2N69TKO" caption="The Ocean" %}



{% capture carousel_images %}
https://bit.ly/2BBbVhc
https://bit.ly/2DOtxXB
{% endcapture %}
{% include elements/carousel.html %}

Video


{% include elements/video.html id="dQw4w9WgXcQ" %}

Uses YouTube video id - the string after v= in the video URL.

Table

Left Center Right
col 3 is right-aligned $160000
col 2 is centered $12
Use Markdown $1
| Left          | Center        | Right   |
| ------------- |:-------------:| -------:|
| col 3 is      | right-aligned | $160000 |
| col 2 is      | centered      | $12     |
| **Use**       | `Markdown`    | $1      |

Task List

- [x] Checked task
- [ ] Other task