mark down 的语法( mark down grammar)
访问量: 3687
ruby code:
```ruby require 'redcarpet' markdown = Redcarpet.new("Hello World!") puts markdown.to_html ```
It's very easy to make some words bold and other words italic with Markdown. You can even link to Google!
It's very easy to make some words **bold** and other words *italic* with Markdown. You can even [link to Google!](http://google.com).
headers:
# This is an <h1> tag ## This is an <h2> tag ###### This is an <h6> tag
Lists and others
Unordered * Item 1 * Item 2 * Item 2a * Item 2b Ordered 1. Item 1 2. Item 2 3. Item 3 * Item 3a * Item 3b Images  Format:  Links http://github.com - automatic! [GitHub](http://github.com) Blockquotes As Kanye West said: > We're living the future so > the present is our past.