GitHub Mastering Markdown Guide.
Markdown Syntax cheat sheet (pdf)
Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
Syntax highlighted code block
# Header 1
## Header 2
### Header 3
- Bulleted
- List
1. Numbered
2. List
**Bold** and _Italic_ and `Code` text
[Link](url) and 
Syntax highlighting Here’s an example of how you can use syntax highlighting with GitHub Flavored Markdown:
```javascript
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}```
The above will like:
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
View the attached resources for more information on Markdown.