Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
H1
H2
H3
H4
H5
H6
Alt-H1
======
Alt-H2
------
Alt-H1
Alt-H2
Emphasis
*asterisks* _underscores_ **asterisks** __underscores__
**asterisks and _underscores_** ~~Scratch this~~
asterisks underscores asterisks underscores
asterisks and underscores Scratch this
Lists
1. First ordered list item
2. Another item
* Unordered list can use asterisks
- Or minuses
+ Or pluses
- First ordered list item
- Another item
- Unordered list can use asterisks
- Or minuses
- Or pluses
Links
[I'm an inline-style link](https://www.google.com)
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
Or leave it empty and use the [link text itself].
URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or <http://www.example.com>.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
I’m an inline-style link with title
Or leave it empty and use the [link text itself].
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com.
Images
Inline-style:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
Reference-style:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
Inline-style:
Reference-style:
Code and Syntax Highlighting
Inline `code` has `back-ticks around` it.
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s # Line break is needed when there is a comment at the end of line for python evironment
print s
```
Inline code
has back-ticks around
it.
var s = "JavaScript syntax highlighting";
alert(s);
s = "Python syntax highlighting"
print s
Tables
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Markdown | Less | Pretty |
---|---|---|
Still | renders |
nicely |
1 | 2 | 3 |
Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
Quote break.
This is a very long line that will still be quoted properly when it wraps. Oh boy let’s keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.
Inline HTML
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
- Definition list
-
Is something people use sometimes.</dd>
- Markdown in HTML
-
Does not work very well. Use HTML tags.</dd> </dl>
Horizontal Rule
Three or more... --- Hyphens *** Asterisks ___ Underscores
Three or more…
Hyphens
Asterisks
Underscores
Line Breaks
Here's a line for us to start with. This line is separated from the one above by two newlines, so it will be a *separate paragraph*. This line is also a separate paragraph, but... This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
Here’s a line for us to start with.
This line is separated from the one above by two newlines, so it will be a separate paragraph.
This line is also a separate paragraph, but… This line is only separated by a single newline, so it’s a separate line in the same paragraph.
YouTube Videos
<a href="http://www.youtube.com/watch?feature=player_embedded&v=IuqFFqrET0g " target="_blank"><img src="http://img.youtube.com/vi/IuqFFqrET0g/0.jpg" alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>
Footnote
Here's a sentence with a footnote. [^1] [^1]: This is the footnote.
Here’s a sentence with a footnote. 1
Definition List
term : definition
- term
- definition
Task List
- [x] Write the press release - [ ] Update the website - [ ] Contact the media
- Write the press release
- Update the website
- Contact the media
-
This is the footnote. ↩