GitBook报错is not a recognized liquid tag

2018/05/25 Bug 阅读次数:

GitBook报错is not a recognized liquid tag

使用gitbook编写博客上传时报错’…is not a recognized liquid tag‘,其主要原因是文章中包含html代码。Gitpage对md与html是通用的,当md文件中包含html代码进就会因为格式异常而报错。

解决办法

方法一:

将要展示的html代码以图片的形式进行替换

方法二:

html代码首尾加上标识语言

LiquidTag

效果如下所示:


<figure class="highlight"><pre><code class="language-html" data-lang="html"><table class="rouge-table"><tbody><tr><td class="gutter gl"><pre class="lineno">1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre><span class="nt">&lt;html&gt;</span>
    <span class="nt">&lt;head&gt;</span>
        <span class="nt">&lt;meta</span> <span class="na">charset=</span><span class="s">"UTF-8"</span><span class="nt">&gt;</span>
        <span class="nt">&lt;title&gt;&lt;/title&gt;</span>
    <span class="nt">&lt;/head&gt;</span>
    <span class="nt">&lt;body&gt;</span>
    <span class="nt">&lt;/body&gt;</span>
<span class="nt">&lt;/html&gt;</span>
</pre></td></tr></tbody></table></code></pre></figure>

Search

    Table of Contents