why?
.md
content1sudo gem install redcarpet
In your _config.yml
file, add the entry for redcarpet
and update the value for markdown
.
1markdown: redcarpet
2
3redcarpet:
4 extension: [
5 "no_intra_emphasis",
6 "tables",
7 "autolink",
8 "strikethrough",
9 "with_toc_data",
10 "fenced_code_blocks", # ```javascript ```
11 "highlight", # ==highlight==
12 "superscript", # 2^(nd)
13 "footnotes", # [^somesamplefootnote]
14
15 ]