Skip to content

Latest commit

 

History

History
101 lines (65 loc) · 1.53 KB

NOTES.md

File metadata and controls

101 lines (65 loc) · 1.53 KB

General rules

  • make changes
  • make and open _site/index.html to see how the site looks
  • Commit to master first
  • make publish to push it out to gh-pages after it's committed to master

Reference links:

CSS Styling

For CSS styling, we use Twitter Bootstrap http://twitter.github.com/bootstrap/components.html

Markup

For markup, we use Markdown. Here is a markdown cheat sheet.

Format Text

Headers

This is an

tag

This is an

tag

This is an
tag

Text styles

This text will be italic This will also be italic This text will be bold This will also be bold

You can combine them

Lists

Unordered

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Ordered

  1. Item 1
  2. Item 2
  3. Item 3
    • Item 3a
    • Item 3b

Miscellaneous

Images

GitHub Logo Format: Alt Text

Links

http://github.com - automatic! GitHub

Blockquotes

As Kanye West said:

We're living the future so the present is our past.

Code Examples in Markdown

Syntax highlighting with GFM

function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}

Or, indent your code 4 spaces

Here is a Python code example without syntax highlighting:

def foo:
  if not bar:
    return true

Inline code for comments

I think you should use an <addr> element here instead.