您可以复制下面的 yaml 代码并将其用作示例页面的页眉。
当提交错误或问题时,您可以将此 URL 粘贴到 github 问题中,以分享您的设置
Handlebars
模板
<div class="entry">
{{#unless license}}
<h3 class="warning">WARNING: This entry does not have a license!</h3>
{{/unless}}
</div>
准备脚本
// Handlebars.registerHelper('loud', function(string) {
// return string.toUpperCase()
// });
输入
{}
输出
<div class="entry">
<h3 class="warning">WARNING: This entry does not have a license!</h3>
</div>