mycpen

Mycpen

记录学习历程与受益知识
github
telegram
bilibili

02_Hexo-出错排查-Nunjucks错误

Hexo 出错排查#

一. Nunjucks 错误#

现象描述

未处理的拒绝 Nunjucks 错误:_posts/xxx.md [第 84 行,第 13 列] 未知的块标签:标签

image-20220829151147643

解决办法

参考 https://hexo.io/docs/troubleshooting.html#Escape-Contents
https://blog.csdn.net/Calvin_zhou/article/details/109303640

泄露(Escape)内容

Hexo 使用Nunjucks来解析文章(旧版本使用Swig,两者语法类似),内容若包含{{ }}{% %}可能导致解析错误,您可以用raw标签包裹,单个反引号{{ }}或三个反引号来避免潜在问题发生。
Alternatively, Nunjucks tags can be disabled through the renderer’s option (if supported), API or front-matter.

{% raw %}
Hello {{ world }}
{% endraw %}
```
Hello {{ world }}
```

加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。