README.md: Document the syntax used in the README
authorW. Trevor King <wking@tremily.us>
Fri, 29 Nov 2013 22:33:29 +0000 (14:33 -0800)
committerW. Trevor King <wking@tremily.us>
Fri, 29 Nov 2013 22:56:40 +0000 (14:56 -0800)
commitc481fb53fed237d109528fb3bc4fe95f821d3e65
treef44c7358985973110f0639329554bfe691cfba54
parentb089fb8d27bc983e69e3dd35a8bcd57c1522b6b3
README.md: Document the syntax used in the README

Explain that the file is written in Markdown, and link to the Markdown
spec and GitHub's markup parsing docs.

After adjusting README.md in my text editor, I compared my working
directory with the index using:

  $ git diff

That looked reasonable, so I committed all the modifications using:

  $ git commit --all

The `--all` option tells Git to automatically stage any modifications
or deletions.  I could have used the following:

  $ git add README.md
  $ git commit

and achieved the same result.  Some people like to stage changes
explicitly, and some like to stage them automatically.  Pick whichever
works best for you.
README.md