Markdown Guide
| Markdown | Result |
|---|---|
| # this is a h1 header |
this is a h1 header |
| ## this is a h2 header |
this is a h3 header |
| ### this is a h3 header |
this is a h3 header |
| #### this is a h4 header |
this is a h4 header |
|
* list item
* list item * list item |
|
|
1. first item
2. second item 3. third item |
|
| * * * |
|
|
This is the first paragraph
This is the second paragraph |
This is the first paragraph This is the second paragraph |
|
This is the first line[space][space]
This is the second line |
This is the first line
|
|
http://www.darkjedibrotherhood.com
[The Brotherhood](http://www.darkjedibrotherhood.com) www.darkjedibrotherhood.com test@example.com |
http://www.darkjedibrotherhood.com
The Brotherhood www.darkjedibrotherhood.com test@example.com |
| *emphasis* | emphasis |
| **more emphasis** | more emphasis |
| !(/assets/images/ajax_loader.gif) |
|
| > Just a regular quote |
Just a regular quote |
Alerts / callouts — put the marker alone on the first line, then the
text on the following line(s). The marker must be UPPERCASE and one of
[!NOTE], [!TIP], [!IMPORTANT],
[!WARNING], [!CAUTION]. Any other value renders as a
plain quote. A blank line does not end a quote, so a plain
> quote written directly after a callout is absorbed into it — put
ordinary text between them to keep them separate.
> [!NOTE] > Useful information that readers should know. > [!TIP] > Optional advice that helps readers do things better. > [!IMPORTANT] > Key information readers need to succeed. > [!WARNING] > Something that needs the reader's immediate attention. > [!CAUTION] > Advises about risks or negative outcomes of an action. |
Note Useful information that readers should know. Tip Optional advice that helps readers do things better. Important Key information readers need to succeed. Warning Something that needs the reader's immediate attention. Caution Advises about risks or negative outcomes of an action. |