Quick reference to markdown syntax.
Wikipedia-like Citations
Example Table of Contents
Phrase Emphasis
Links
Images
Lists
Bock Quotes
Code Spans
Horizontal Lines
Manual Line Breaks
Markdown Comments
Task Lists
Resources
Tools
Libraries
Todos
This is some text where "I'm quoting this part"<sub><sup>[[111]][c]</sub></sup> because it needs cited.
Citations
---------
1. [**^**](#wikipedia-like-citations) [Author, Title, Etc.](http://google.com)
[c]: #citations
This is some text where "I'm quoting this part"[111] because it needs cited.
The small text looks <sub><sup>really really really<sub><sup>small.
The small text looks really really reallysmall.
Example Table of Contents
--------------------
**[Section A](#section-a)** <- MAKE SURE YOU HAVE 2 SPACES AFTER EACH LINE
**[Section B](#section-b)**
**[Section C](#section-c)**
Section A
---------
<!-- Content A -->
Section B
---------
<!-- Content B -->
Section C
---------
<!-- Content C -->
Edit this doc to see how I did the table of contents here.
*italic* **bold**
_italic_ __bold__
italic bold
italic bold
[example](http://url.com/ "Title")
OR
An [example][id]. Then, anywhere
else in the doc, define the link:
[id]: http://example.com/ "Title"
OR
An example. Then, anywhere else in the doc, define the link:

OR
![alt text][id]
[id]: /url/to/img.jpg "Title"
OR
Ordered, without paragraphs:
1. Foo
2. Bar
Unordered, with paragraphs:
* A list item.
With multiple paragraphs.
* Bar
You can nest them:
* Abacus
* answer
* Bubbles
1. bunk
2. bupkis
* BELITTLER
3. burper
* Cunning
- Foo
- Bar
Unordered, with paragraphs:
-
A list item.
With multiple paragraphs.
-
Bar
You can nest them:
- Abacus
- answer
- Bubbles
- bunk
- bupkis
- BELITTLER
- burper
- Cunning
> Email-style angle brackets
> are used for blockquotes.
> > And, they can be nested.
> #### Headers in blockquotes
>
> * You can quote a list.
> * Etc.
Email-style angle brackets are used for blockquotes.
And, they can be nested.
- You can quote a list.
- Etc.
`<code>` spans are delimited
by backticks.
```javascript
var listener = node.addEventListener("click", (event) => {
let _target = event.target;
this.handleClick(_target);
});
```
This is a normal paragraph.
This is a preformatted
code block.
<code>
spans are delimited
by backticks.
var listener = node.addEventListener("click", (event) => {
let _target = event.target;
this.handleClick(_target);
});
This is a normal paragraph.
This is a preformatted
code block.
---
* * *
- - - -
At the end of this line there are 2 spaces.
This sentence has no spaces after it.
See how this sentence wraps the one above?
At the end of this line there are 2 spaces.
This sentence has no spaces after it.
See how this sentence wraps the one above?
<!-- Markdown comments are the same as html comments. -->
- [x] This is a complete item
- [ ] This is an incomplete item
- This is a complete item
- This is an incomplete item
- Markdown Basics - Github
- Markdown Cheat Sheet
- Github Flavored Markdown Docs
- Mastering Markdown - Github
- Daring Fireball
- Dash Docs (they have a markdown cheatsheet)
- Add Wikipedia style citations example
- videos
- inline html
- tables
- fix syntax highlighting part. (see here: http://bit.ly/1L4HjVA)
- headers (see here: http://bit.ly/1L4HjVA)