最新服务器上的版本,以后用这个
wangzhenxin
2023-11-19 bc164b8bdbfbdf1d8229a5ced6b08d7cb8db7361
commit | author | age
2207d6 1 GitHub Flavored Markdown
W 2 ========================
3
4 Multiple underscores in words
5 -----------------------------
6
7 do_this_and_do_that_and_another_thing
8
9 URL autolinking
10 ---------------
11
12 http://example.com
13
14 Strikethrough
15 -------------
16
17 ~~Mistaken text.~~
18
19 Fenced code blocks
20 ------------------
21
22 ```
23 function test() {
24   console.log("notice the blank line before this function?");
25 }
26 ```
27
28 Syntax highlighting
29 -------------------
30
31 ```ruby
32 require 'redcarpet'
33 markdown = Redcarpet.new("Hello World!")
34 puts markdown.to_html
35 ```
36
37 ~~~
38 this is also code
39 ~~~
40