Daring Fireball: Markdown Syntax Documentation
Github Help: Writing on Github
also called Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
Alternative H1
==============
Alternative H2
-------------
> ### Blockquote contained other elements.
>
> Blockquote with multi paragraph.
>
> > Blockquote nested.
>
> Blockquote with hard-wrapped paragraph. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
Blockquote with multi paragraph.
Blockquote nested.
Blockquote with hard-wrapped paragraph. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
Unordered lists use asterisks*
, pluses+
, and hyphens-
— interchangably — as list markers
* Unordered list item.
* Unordered list item.
* List item with hard-wrapped paragraph. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit.
* List item with multiple paragraphs.
List item with multiple paragraphs.
* List item.
* List item nested.
* List item nested
* list contained other elements.
>
> Blockquote inside a list item.
-
Unordered list item.
-
Unordered list item.
-
List item with hard-wrapped paragraph. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
-
List item with multiple paragraphs.
List item with multiple paragraphs.
-
List item.
- List item nested.
- List item nested
- List item nested.
-
list contained other elements.
Blockquote inside a list item.
1. Ordered list item.
2. Ordered list item.
3. List item with hard-wrapped paragraph. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit.
4. List item with multiple paragraphs
List item with multiple paragraphs
5. List item.
1. List item nested.
2. List item nested.
1. List item nested.
2. List item nested.
5. List contained other elements
>
> Blockquote inside a list item
-
Ordered list item.
-
Ordered list item.
-
List item with hard-wrapped paragraph. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
-
List item with multiple paragraphs
List item with multiple paragraphs
-
List item.
- List item nested.
- List item nested.
- List item nested.
- List item nested.
-
List contained other elements
Blockquote inside a list item
Automatic numbering
7. Ordered list item.
2. Ordered list item.
8. Ordered list item.
- Ordered list item.
- Ordered list item.
- Ordered list item.
1. Ordered list item.
1. Ordered list item.
1. Ordered list item.
- Ordered list item.
- Ordered list item.
- Ordered list item.
```
class Hoge
def hoge
print 'hoge'
end
end
```
class Hoge
def hoge
print 'hoge'
end
end
Or indent every line of the block by at least 4 spaces or 1 tab.
class Hoge
def hoge
print 'hoge'
end
end
Code inside other elements
`JavaScript` is not `Java`
JavaScript
is not Java
* * *
***
*****
- - -
---------------------------------------
Style | Syntax | Example | Output |
---|---|---|---|
Bold | ** ** or __ __ |
**bold text** |
bold text |
Italic | * * or _ _ |
*italic text* |
italic text |
Strikethrough | ~~ ~~ |
~~mistaken text~~ |
[Google](https://www.google.co.jp)
TOC
- [Headings](#headings)
- [Blockquotess](#blockquotes)
- [Lists](#lists)
- [Unordered Lists](#unordered-lists)
- [Ordered Lists](#ordered-lists)
TOC

- [x] Finish my changes
- [ ] Push my commits to GitHub
- [ ] Open a pull request
- Finish my changes
- Push my commits to GitHub
- Open a pull request
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
| Command | Description |
| --- | --- |
| git status | List all new or modified files |
| git diff | Show file differences that haven't been staged |
Command | Description |
---|---|
git status | List all new or modified files |
git diff | Show file differences that haven't been staged |
| Left-aligned | Center-aligned | Right-aligned |
| :--- | :---: | ---: |
| git status | git status | git status |
| git diff | git diff | git diff |
Left-aligned | Center-aligned | Right-aligned |
---|---|---|
git status | git status | git status |
git diff | git diff | git diff |