Home

Markdown

   
#, ##, ###, …, ###### Headings
[Link Text](URL) Link
[Text](#header-name) Link to # Header Name
![Alt Text](URL) Video/Image
--- Horizontal Line
\ Escape character
<!-- Text --> Comments
` Text ` Inline Code
``` Text ``` Code Block
> Text Blockquote
» Text Nested Blockquote

Emphasis

   
**Text** Bold
_Text_ Italics
~~Text~~ Strike through
<u>Text</u> Underline

Lists

Unordered Lists

- Start
    - Indented

Ordered Lists

1. First
2. Second
    1. First
    2. Second
1. First
1. Second
1. Third
1. etc

More Complex Lists

<ol>
    <li>First</li>
    <li>Second</li>
    <ol start="2">
        <li>Second</li>
    </ol>
</ol>
<ul>
    <ul>
        <li>Indented Unordered List</li>
    </ul>
</ul>

Tables

Text

| Title 1  | Title 2  | Title 3 | etc |
| -------- | -------- | ------  | --- |
| Cell 1   | Cell 2   | Cell 3  | etc |

Text
   
--- Left align
--: Right align
:-: Center align

Math