Created
January 21, 2014 21:07
-
-
Save twinforces/8548404 to your computer and use it in GitHub Desktop.
This is a cheat sheet for Multi-Markdown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Title: MMD Cheat Sheet | |
Author: Pierce T. Wetter III | |
Email: [email protected] | |
Date: September 6, 2013 | |
### Basics ### | |
| What | | Syntax | | |
| :------------ | -- | :----------- | | |
| *Italic* | | \*Italic\* or \_Italic\_| | |
| **Bold ** | | \*\*Bold\*\* or \_\_Italic\_\_| | |
| ___Both___ | | \*\*\*Both\*\*\* or \_\_\_Both\_\_\_| | |
| Block Quote | | \> Block Quote (like email) | | |
| List | | \*, + or - | | |
| Ordered | | 1. on first item, | | |
| Header | | \#\#\# Header | | |
| HRule | | \-\-\- or \*\*\* on empty line | | |
### Links | |
| What | | Syntax | | |
| :------------ | -- |:----------- | | |
| Basic | | ```[CNN](http://cnn.com)``` | | |
| Reference | | ```[link][linkid]``` for [link][linkid] then ```[linkid]: http://cnn.com "title"``` on its own line elsewhere. | | |
| Def Link | | ```[linkid]: http://cnn.com "title"``` on its own line elsewhere.| | |
| Short | | ```<http://cnn.com> <[email protected]>```| | |
| Internal | | ```[Links][] (any header name)``` | | |
| Footnote[^footnote] | | ```[^footnote]``` def footnote later | | |
| Def Footnote | | ```[^footnote]: text```| | |
| Image | | `````` for an image | | |
| | | ```![Image Ref]``` then later def | | |
| | | ```![Caption][Image Ref]``` then later def | | |
| Image Def | | ```[Image Ref]: URL "Title" width="45px" height="45px" | | |
[^footnote]: This is the footnote | |
###Tables: | |
| First Header | Second Header | Third Header | | |
| :------------ | :-----------: | -------------------: | | |
| First row | **Bold** | Very long data entry | | |
| Second row | Cell that spans across two columns || | |
[Table caption, also works as a reference][section-mmd-tables-table1] | |
```| First Header | Second Header | Third Header | | |
| :------------ | :-----------: | -------------------: | | |
| : Left align | : centered : | Right align : | | |
| First row | **Bold** | Very long data entry | | |
| Second row | Cell that spans across two columns || | |
[Table caption, also works as a reference][section-mmd-tables-table1] | |
``` | |
###Critic: | |
| What | | Syntax | | |
| :----- | --- | :------- | | |
| {--a delete. --} a delete. | | \{\-\- remove \-\-\} | | |
| {++an add. ++}| | \{\+\+ add\+\+\} | | |
| swap {~~from~>to~~} | | \{\~\~\from\~\>to\~\~\} | | |
| {==a highlight==} | | \{\=\=highlight\=\=\} | | |
| Comment, which you can't see{>>What is it a test of?<<}. | | \{\>\>Comment?\<\<\}| | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment