文章目录
  1. 1. Differences from traditional Markdown
    1. 1.1. Multiple underscores in words
    2. 1.2. URL autolinking
    3. 1.3. Strikethrough
    4. 1.4. Fenced code blocks
    5. 1.5. Syntax highlighting
    6. 1.6. Tables

Differences from traditional Markdown

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

1
2
3
function test() {
console.log("notice the blank line before this function?");
}

Syntax highlighting

1
2
3
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html

Tables

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
Name Description
Help Display the help window.
Close Closes a window
Name Description
Help Display the help window.
Close Closes a window
Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1
文章目录
  1. 1. Differences from traditional Markdown
    1. 1.1. Multiple underscores in words
    2. 1.2. URL autolinking
    3. 1.3. Strikethrough
    4. 1.4. Fenced code blocks
    5. 1.5. Syntax highlighting
    6. 1.6. Tables