当输入jekyll时,markdown会将--
替换为–
。
有没有办法防止这种情况发生?
答案 0 :(得分:11)
您可以使用反斜杠(\
)来转义降价字符。在这种情况下,您可以输入\-\-
答案 1 :(得分:9)
环绕声 - 用`可以解决这个问题。
e.g。
`--`
<强> [改进] 强>
使用rdiscount而不是Maruku来解析markdown可以解决这个问题
答案 2 :(得分:4)
答案已被接受,但这是正确的解决方案。
要在Jekyll中修复此问题,默认的降价库Redcarpet需要包含智能扩展程序。
_config.yml
markdown: redcarpet
redcarpet:
extensions: ['smart']
它位于Jekyll docs
答案 3 :(得分:1)
我在Octopress遇到过这个问题,这里有点工作
-\\\\-
答案 4 :(得分:0)
我能够使用以下代码在XWiki上运行它:
<section>
<button (click)="showChildComponentA()"></button>
<childComponentA></childComponentA>
<childComponentB></childComponentB>
<childComponentC></childComponentC>
</section>