Github Markdown Cheatsheet
Github Markdown Cheatsheet
SYNTA X
Markdown is a way to style text on the web. You control the display of the document; formatting words as
bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly,
Markdown is just regular text with a few non-alphabetic characters thrown in, like # or *.
HEADERS
# This is an <h1> tag
LISTS
Unordered
* Item 1
* Item 2
IMAGES

Format: 
* Item 2a
* Item 2b
EMPHASIS
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
LINKS
Ordered
http://github.com - automatic!
1. Item 1
2. Item 2
[GitHub](http://github.com)
3. Item 3
* Item 3a
* Item 3b
B LO CKQ U OT E S
As Grace Hopper said:
*literal asterisks*
\ backslash
() parentheses
` backtick
# hash mark
* asterisk
+ plus sign
_ underscore
{} curly braces
. dot
[] square brackets
! exclamation mark
GITHUB
FL AVOR ED
M A R K DOW N
GitHub.com uses its own version of the Markdown syntax that provides an additional set of useful
features, many of which make it easier to work with content on GitHub.com.
USERNAME @MENTIONS
Markdown coverts text with four leading spaces into a code block; with GFM you can
wrap your code with ``` to create a code block without the leading spaces. Add an
optional language identifier and your code with get syntax highlighting.
ISSUE REFERENCES
TA S K L I S T S
```javascript
function test() {
console.log("look ma, no spaces");
}
```
#1
supported
github-flavored-markdown#1
defunkt/github-flavored-markdown#1
EMOJI
To see a list of every image we
support, check out
www.emoji-cheat-sheet.com
GitHub supports emoji!
:+1: :sparkles: :camel: :tada:
:rocket: :metal: :octocat:
function test() {
console.log("look ma, no spaces");
}
TA B L E S
You can create tables by assembling
a list of words and dividing them
with hyphens - (for the first row),
and then separating each column
with a pipe | :
First Header | Second Header
------------ | ------------Content cell 1 | Content cell 2
Content column 1 | Content column 2
First Header
Second Header
Content cell 1
Content cell 2
Content column 1
Content column 2