Markdown各种小问题汇总
如何分割Quote?
How can I write two separate blockquotes in sequence using markdown?
> Imagination is more important than knowledge.
<!-- -->
> Never think of the future. It comes soon enough.
<!-- -->
> Anyone who has never made a mistake has never tried anything new.
Imagination is more important than knowledge.
Never think of the future. It comes soon enough.
Anyone who has never made a mistake has never tried anything new.
删除文字的样式怎么搞?
Is it possible to use strikethrough (<s>
, <strike>
, <del>
) in Trello?
用~~foo~~
.
如何添加footnote?
在Daring Fireball的post “About the footnotes” 中看到可以给文章加footnote. 自己在post “in an effort to” 中用尝试了一下, 还蛮好用的. 后来发现footnote是multimarkdown支持的一个语法, 形如:
Clicking this number[^fn-sample_footnote] will lead you to a footnote.
[^fn-sample_footnote]: Handy! Now click the return link to go back.
效果:
Clicking this number2 will lead you to a footnote.
Handy! Now click the return link to go back. ↩
另见: php Markdown Extra - Footnotes
遗憾的是博客园的Markdown不支持Multimarkdown.
子列表
博客园中子列表前面需要加四个空格… 而在很多其他地方只要加一个或两个空格就可以了!