Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 977 Bytes

markdown.md

File metadata and controls

48 lines (37 loc) · 977 Bytes

Markdown resources for GH-Pages

GitHub Mastering Markdown Guide.

Markdown Syntax cheat sheet (pdf)

Markdown Help

Basic Formatting

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 ![Image](src)

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.