View on GitHub

99jools.github.io

Personal web pages

Hello World

I am just testing out the Markdown formatting

Headers

This is an h1 level heading

This is an h2 level heading

This is an h3 level heading

This is an h4 level heading

This is an h5 level heading
This is an h6 level heading

Emphasis

...aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

Lists

  1. First ordered list item
  2. Another item
    • Unordered sub-list.
  3. Actual numbers don't matter, just that it's a number
    1. Ordered sub-list
    2. Next item
  4. And another item.

⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).

⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ ⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ ⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)

Tables

Colons can be used to align columns.

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.

Markdown Less Pretty
Still renders nicely
1 2 3

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. Task Lists