Skip to content

Commit f754cc7

Browse files
Hugo v0.100.0 移除了 Blackfriday (#43)
* Hugo v0.100.0 移除了 Blackfriday * Update content/post/2019-05-10-intro-to-markdown/index.Rmd Co-authored-by: Xiangyun Huang <[email protected]> * 更新相应的 HTML 文件 Co-authored-by: Xiangyun Huang <[email protected]>
1 parent b3a6b47 commit f754cc7

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

content/post/2019-05-10-intro-to-markdown/index.Rmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ blockquote > p:first-child {
2626
}
2727
```
2828

29+
更新:[Hugo v0.100.0 移除了 Blackfriday](https://github.com/gohugoio/hugo/commit/0f8dc47037f59156c04540d97ed1b588e6bc1164),目前 Hugo 只使用 [goldmark](https://github.com/yuin/goldmark)
30+
31+
---
32+
2933
这篇博文源自于 Yihui Xie 为 Hugo 主题 [hugo-xmag](https://themes.gohugo.io/hugo-xmag/) 写的英文介绍 [A Plain Markdown Post](https://xmag.yihui.name/post/2017/02/14/a-plain-markdown-post/)[^translation]。除翻译的内容外,补充了关于如何嵌入音频、视频和幻灯片的内容,也是这次 R 会上小伙伴们提问最多的地方。
3034

3135
这篇博文主要面向 [**blogdown**](https://github.com/rstudio/blogdown) 用户,如果你不使用 **blogdown**,你可以跳过第一节。想知道更多关于 Markdown 的基础语法,请看 [John Gruber's Markdown 语法](https://daringfireball.net/projects/markdown/)[R Markdown: The Definitive Guide](https://bookdown.org/yihui/rmarkdown/markdown-syntax.html)

content/post/2019-05-10-intro-to-markdown/index.html

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
text-align: inherit;
2525
}
2626
</style>
27+
<p>更新:<a href="https://github.com/gohugoio/hugo/commit/0f8dc47037f59156c04540d97ed1b588e6bc1164">Hugo v0.100.0 移除了 Blackfriday</a>,目前 Hugo 只使用 <a href="https://github.com/yuin/goldmark">goldmark</a></p>
28+
<hr />
2729
<p>这篇博文源自于 Yihui Xie 为 Hugo 主题 <a href="https://themes.gohugo.io/hugo-xmag/">hugo-xmag</a> 写的英文介绍 <a href="https://xmag.yihui.name/post/2017/02/14/a-plain-markdown-post/">A Plain Markdown Post</a><a href="#fn1" class="footnote-ref" id="fnref1"><sup>1</sup></a>。除翻译的内容外,补充了关于如何嵌入音频、视频和幻灯片的内容,也是这次 R 会上小伙伴们提问最多的地方。</p>
2830
<p>这篇博文主要面向 <a href="https://github.com/rstudio/blogdown"><strong>blogdown</strong></a> 用户,如果你不使用 <strong>blogdown</strong>,你可以跳过第一节。想知道更多关于 Markdown 的基础语法,请看 <a href="https://daringfireball.net/projects/markdown/">John Gruber’s Markdown 语法</a><a href="https://bookdown.org/yihui/rmarkdown/markdown-syntax.html">R Markdown: The Definitive Guide</a></p>
2931
<div class="rmdnote">
@@ -41,14 +43,10 @@ <h1>1. Markdown 还是 R Markdown</h1>
4143
</div>
4244
<p>Pandoc 和 Blackfriday 一样都支持任务型列表<a href="#fn2" class="footnote-ref" id="fnref2"><sup>2</sup></a>,而原始 Markdown 是不支持的</p>
4345
<ul class="task-list">
44-
<li><input type="checkbox" disabled="" checked="" />
45-
开发一个R包。</li>
46-
<li><input type="checkbox" disabled="" />
47-
写一本书。</li>
48-
<li><input type="checkbox" disabled="" />
49-
</li>
50-
<li><input type="checkbox" disabled="" />
51-
搭建个人博客!</li>
46+
<li><input type="checkbox" disabled="" checked="" />开发一个R包。</li>
47+
<li><input type="checkbox" disabled="" />写一本书。</li>
48+
<li><input type="checkbox" disabled="" /></li>
49+
<li><input type="checkbox" disabled="" />搭建个人博客!</li>
5250
</ul>
5351
<p><a href="https://github.com/russross/blackfriday">Blackfriday’s Markdown</a><a href="https://pandoc.org/MANUAL.html#pandocs-markdown">Pandoc’s Markdown</a> 之间有很多区别。比如 Blackfriday 不支持 LaTeX 数学公式,而 Pandoc 支持。 <a href="https://yihui.name/">谢益辉</a><a href="https://github.com/yihui/hugo-xmag">hugo-xmin</a> 主题中添加了 <a href="https://www.mathjax.org/">MathJax</a> 支持,在 Markdown 文档中必须把数学表达式放在一对反引号中,行内公式: <code>`$ $`</code>;行间公式: <code>`$$ $$`</code>,举个小栗子,<code>$S_n = \sum_{i=1}^n X_i$</code><code>$$S_n = \sum_{i=1}^n X_i.$$</code> 在 R Markdown 文档里,不需要反引号,因为 Pandoc 能识别和处理数学表达式。<a href="#fn3" class="footnote-ref" id="fnref3"><sup>3</sup></a></p>
5452
<p>总的来说, Markdown、Hugo’s Markdown、Pandoc’s Markdown 和 R Markdown 的关系大致如下:</p>

0 commit comments

Comments
 (0)