GitBook报错is not a recognized liquid tag
使用gitbook编写博客上传时报错’…is not a recognized liquid tag‘,其主要原因是文章中包含html代码。Gitpage对md与html是通用的,当md文件中包含html代码进就会因为格式异常而报错。
解决办法
方法一:
将要展示的html代码以图片的形式进行替换
方法二:
html代码首尾加上标识语言
效果如下所示:
<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"><html></span>
<span class="nt"><head></span>
<span class="nt"><meta</span> <span class="na">charset=</span><span class="s">"UTF-8"</span><span class="nt">></span>
<span class="nt"><title></title></span>
<span class="nt"></head></span>
<span class="nt"><body></span>
<span class="nt"></body></span>
<span class="nt"></html></span>
</pre></td></tr></tbody></table></code></pre></figure>