Skip to content

Instantly share code, notes, and snippets.

@PaulGuo
Created May 3, 2015 05:00
Show Gist options
  • Save PaulGuo/d7fc6fa5695d13005d97 to your computer and use it in GitHub Desktop.
Save PaulGuo/d7fc6fa5695d13005d97 to your computer and use it in GitHub Desktop.
GFM - GitHub Flavored Markdown Syntax
Multiple underscores in words

wow_great_stuff do_this_and_do_that_and_another_thing.

URL autolinking

http://example.com

Strikethrough

Mistaken text.

Fenced code blocks

Here's an example:

function test() {
  console.log("notice the blank line before this function?");
}
Syntax highlighting
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
Tables
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
Emoji

:P

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment