Jekyll(对于github)很新,我在寻找是否有办法在YAML标题中强制生成。
我正在使用这种HTML布局(称为片段)
<!DOCTYPE html>
<html ng-app="MyApp">
<head>
...
</head>
{{content}}
</html>
我有一些HTML内容以这种方式使用它:
---
layout: snippets
---
{% raw %}
<body>
....
</body>
{% endraw %}
因为它们提供了AngularJS代码,所以我必须将它包含在raw / endraw块中。 有没有办法直接在标题中将文件内容设置为raw,有点:
---
layout: snippets
raw: true
---
<body>
....
</body>