Skip to main content
xx

小书匠语法说明之nunjucks

概述

A powerful templating engine with inheritance, asynchronous control, and more (jinja2 inspired)

https://github.com/mozilla/nunjucks

https://mozilla.github.io/nunjucks/

nunjucks 模板的具体使用,可以参考这份文档 https://mozilla.github.io/nunjucks/templating.html

小书匠引入了 nunjucks 模板标签语法, 丰富了小书匠编辑器的语法种类,用户可以有更多的选择来处理自己的文档,同时也兼容了其他支持类似标签的语法编辑器。

使用

元数据标识: grammar_nunjucks

想要使用该语法,需要在设置>扩展语法 里把nunjucks 模板语法选项打开。或者在每篇文章的元数据里通过 grammar_nunjucks 进行控制。系统默认关闭nunjucks 模板语法语法功能

提供 nunjucks 模板解析语法 具体使用可以参考 https://mozilla.github.io/nunjucks/templating.html 注:只实现了同步的模板标签语法,禁止使用异步标签。

内部处理流程

  1. 替换行内代码,块代码为占位符
  2. 使用 nunjucks 引擎对文档进行解析
  3. 将占位符重新转换成对应的行内代码或者块代码
  4. 使用 markdown 引擎对文档进行解析
  5. 使用小书匠自定义语法进行解析(比如代码高亮,公式,流程图,代码片段code chunk)

注:

  1. 为了防止行内代码或者块代码被 nunjucks 执行,系统会在 nunjucks 引擎处理文章时,先用占位符替换,解析完成后再重新替换成原来的代码。
  2. 小书匠 nunjucks 里的部份标签语法参考了 hexo https://hexo.io 的代码实现,但实现逻辑上有些区别,小书匠是先进行 nunjucks 解析,再进行 markdown 处理,而 hexo 默认是先将文档用 markdown 引擎转换成 html ,再通过 nunjucks 引擎进行模板处理

内置变量

小书匠提供了几个内置的变量,可以通过 nunjucks 的 {{ }} 语法支持取得变量内的值,比如 {{doc.createDate|date}} 用来取得当前文档的创建时间,并使用过滤器 date 进行格式化输出

doc

doc 变量主要包含了当前文档的信息,像文章标题,内容,创建时间,修改时间,标签等

拿到 doc 的所有属性

  1. 1{%for key, val in doc%} 

  2. 2{{key}} : {{val}} 

  3. 3{%endfor%} 

meta

meta 变量主要包含了当前文章里用户自定义的元数据信息

拿到 meta 的所有属性

  1. 1{%for key, val in meta%} 

  2. 2{{key}} : {{val}} 

  3. 3{%endfor%} 

标签

支持的 nunjucks 标签

小书匠支持了大部分 nunjusks 标签,比如 if, for, macro, set, filter, call

一些 nunjucks 标签的使用示例

宏 Macro

  1. 1{% macro field(name, value='', type='text') %} 

  2. 2<div class="field"> 

  3. 3 <input type="{{ type }}" name="{{ name }}"  

  4. 4 value="{{ value|escape }}" /> 

  5. 5</div> 

  6. 6{% endmacro %} 

  7. 7 

  8. 8{{ field('user') }} 

  9. 9{{ field('pass', type='password') }} 

过滤器 filter

  1. 1{% filter title %} 

  2. 2may the force be with you 

  3. 3{% endfilter %} 

输出结果

  1. 1may The Force Be With You 

执行 call

  1. 1{% macro add(x, y) %} 

  2. 2{{ caller() }}: {{x + y }} 

  3. 3{% endmacro%} 

  4. 4 

  5. 5{% call add(1, 2) -%} 

  6. 6The result is 

  7. 7{%- endcall %} 

输出结果:

  1. 1The result is: 3 

不支持的 nunjucks 标签

asyncEach, asyncAll, extends, block, include, import

小书匠不提供 nunjucks 异步解析,所有需要异步处理的标签都无法正常使用

nunjucks 里用于继承相关的标签,在小书匠系统里也无法正常使用

小书匠提供的自定义标签

代码块

  1. 1{% codeblock [title] [lang:language] [url] [link text] [line_number:(true|false)] [highlight:(true|false)] [first_line:number] [mark:#,#-#]%} 

  2. 2code snippet 

  3. 3{% endcodeblock %} 

示例

  1. 1{%codeblock 小书匠代码块 lang:javascript http://markdown.xiaoshujiang.com gooo line_number:true first_line:2 mark:2,4-7 %} 

  2. 2var walkdir = require('walkdir') 

  3. 3 , path = require('path') 

  4. 4 , fs = require('fs') 

  5. 5 

  6. 6function walkAndUnlink(dirPath, regex){ 

  7. 7  

  8. 8 var emitter = walkdir(dirPath) 

  9. 9 

  10. 10 emitter.on('file',function(filename,stat){ 

  11. 11 if( regex.test(filename) ){ 

  12. 12 console.log("Removing old file: " + filename) 

  13. 13 fs.unlinkSync( path.resolve( dirPath, filename) ) 

  14. 14 } 

  15. 15 }) 

  16. 16  

  17. 17} 

  18. 18{%endcodeblock%} 

显示效果

enter description here

nunjucks code 标签显示效果

小书匠代码块javascript    17行
  1. 2var walkdir = require('walkdir') 

  2. 3 , path = require('path') 

  3. 4 , fs = require('fs') 

  4. 5 

  5. 6function walkAndUnlink(dirPath, regex){ 

  6. 7  

  7. 8 var emitter = walkdir(dirPath) 

  8. 9 

  9. 10 emitter.on('file',function(filename,stat){ 

  10. 11 if( regex.test(filename) ){ 

  11. 12 console.log("Removing old file: " + filename) 

  12. 13 fs.unlinkSync( path.resolve( dirPath, filename) ) 

  13. 14 } 

  14. 15 }) 

  15. 16  

  16. 17} 

  17. 18 

引用

  1. 1{% blockquote [author[, source]] [link] [source_link_title] %} 

  2. 2content 

  3. 3{% endblockquote %} 

朝辞白帝彩云间,千里江陵一日还。
两岸猿声啼不住,轻舟已过万重山。

李白早发白帝城

显示效果

enter description here

nunjucks blockquote 标签显示效果

提取式引用

  1. 1{% pullquote [class] %} 

  2. 2content 

  3. 3{% endpullquote %} 

图片

  1. 1{% img [class names] /path/to/image [width] [height] [title text [alt text]] %} 

链接

  1. 1{% link text url [external] [title] %} 

youtube

  1. 1{% youtube video_id %} 

vimeo

  1. 1{% vimeo video_id %} 

slideshare

  1. 1{%slideshare briansolis/26-disruptive-technology-trends-2016-2018-56796196 %} 

过滤器

小书匠支持的 nunjucks 过滤器

小书匠支持了 nunjucks 所有的内置过滤器,具体使用可到该页面查看 https://mozilla.github.io/nunjucks/templating.html#builtin-filters

小书匠提供的自定义过滤器

时间格式过滤器 date

该过滤器使用了 moment 组件 http://momentjs.com/, 相关的时间格式,调用方法都是以该组件进行处理的

用法

date('时间格式')
date('方法名称', ['参数值', ...])
支持的时间格式可以参考 http://momentjs.com/docs/#/parsing/string-format/
支持的方法可以参考 http://momentjs.com/docs/

测试代码

  1. 1{{doc.createDate|date('YYYY年MM月DD日 HH小时mm分钟ss秒SSS毫秒')}} 

  2. 2 

  3. 3{% if doc.createDate|date('isLeapYear') %} 

  4. 4今年是闰年,记得多吃点肉 

  5. 5{% else %} 

  6. 6今年是平年,该吃吃该喝喝 

  7. 7{% endif %} 

  8. 8 

输出结果

  1. 12016年12月28日 02小时30分钟15秒814毫秒 

  2. 2 

  3. 3今年是闰年,记得多吃点肉 

数字转文字 numbo

该过滤器使用了 numbo 组件 https://github.com/Edditoria/numbo 进行处理

测试代码

  1. 1{{1234.23|numbo}} 

  2. 2{{'1234567890876543210.23'|numbo}} 

  3. 3{{'1234567890876543210.23'|numbo('enUS')}} 

  4. 4{{'1234567890876543210.23'|numbo('amount', 'zhTW')}} 

输出结果

  1. 1壹仟貳佰叁拾肆元貳角叁分 

  2. 2壹佰貳拾叁京肆仟伍佰陸拾柒兆捌仟玖佰零捌億柒仟陸佰伍拾肆萬叁仟貳佰壹拾元貳角叁分 

  3. 3One Quintillion Two Hundred Thirty-four Quadrillion Five Hundred Sixty-seven Trillion Eight Hundred Ninety Billion Eight Hundred Seventy-six Million Five Hundred Forty-three Thousand Two Hundred Ten Dollars and Twenty-three Cents Only 

  4. 4一百二十三京四千五百六十七兆八千九百零八億七千六百五十四萬三千二百一十元兩角三分 

注意

由于 nunjucks 破坏了文档解析顺序结构,使用 nunjucks 语法时,同步滚动预览将无法准确的定位,特别是使用了 if, for, macro 等标签

Design by xsj 京ICP备13031371号