Jekyll的错误编译github页面的html代码

时间:2013-09-14 10:30:56

标签: html jekyll github-pages

<pre class="Input" style="white-pace:nowrap; overflow: auto;"><code>Plot[{Sin[1/x]}, {x, -1, 3}, 

 RegionFunction -&gt; Function[{x}, 0 &lt; x &lt; 10], 

 PlotRange -&gt; {{-1, 3}, {-1.2, 1.2}}, 

 PlotLabel -&gt; TraditionalForm[Sin[1/x]], PlotStyle -&gt; Red, 

 AxesLabel -&gt; {"x", "y"}, AxesStyle -&gt; Arrowheads[{-0.03, 0.03}]]</code></pre>

错误信息是:

Error: Variable `{{-1,3}` was not properly terminated with regexp: /\}\}/. Use --trace to view backtrace

我使用GithShell来使用Jekyll(用于github页面)

2 个答案:

答案 0 :(得分:1)

{{是模板语言的一部分。尝试对{进行编码或将内容括在{% raw %} {% endraw %}块中。

答案 1 :(得分:1)

因为'{{'被视为流动的一部分。

e.g。
'{{site.title}}'将替换为_config.yml

中设置的网站名称