Markdown Guide
Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML). source
Usefull links
Tips & Tricks
Create an anchor
<!--link-->
Take me to [pookie](##pookie)
<!--anchor-->
## pookie
Notes:
- the link must be lower case
- replace space in title with -
Cheat Sheet
This is a quick summary of the Markdown syntax.
Markdown | Rendered Output | |
---|---|---|
Heading 1 | # Heading 1 |
Heading 1 |
Heading 2 | ## Heading 2 |
Heading 2 |
Heading 3 | ### Heading 3 |
Heading 3 |
Bold | This is some |
This is some bold text |
Italic | This is some |
This is some italic text |
Blockquotes | > Kent. |
Kent. |
List | Milk |
|
Ordered list | 1. Introduction |
|
Inline code | This is `someJavaScript()` |
This is someJavaScript() |
Code block | Here's some JavaScript code: |
Here's some JavaScript code:function hello() { Language is normally auto-detected, but it can also be specified: SELECT * FROM users; |
Unformatted text | Indent with a tab or 4 spaces |
Indent with a tab or 4 spaces for unformatted text.This text will not be formatted: |
Link | This is detected as a link: |
This is detected as a link: https://hello-there.org And this is a link anchoring text content: Hello-There And this is a link, with a title, anchoring text content: Hello-There (hint: hover over the link) |
Images |
|
|
Horizontal Rule | One rule: |
One rule: Another rule: |
Tables | See below |
Tables
Tables are created using pipes |
and and hyphens -
. This is a Markdown table:
Basic tables
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
First Header | Second Header
-|-
Content Cell | Content Cell
Content Cell | Content Cell
~~Note that there must be at least 3 dashes separating each header cell.~~
align tables
Colons can be used to align columns:
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |