删除最后的空行 HTML
Delete empty lines in the final HTML
我的 Jekyll 项目的 HTML 输出充满了空白。在 Jekyll 的 HTML 输出中删除空行的最简单方法是什么?有我可以使用的钩子吗?
我正在寻找合适的 place/hook 以便 jekyll build
处理所有事情。
有一个有用的插件:
https://github.com/aucor/jekyll-plugins/blob/master/strip.rb
安装到 _plugins
目录后,您只需将以下括号添加到 _layouts/default.html
{% strip %}
[...]
{% endstrip %}
我的 Jekyll 项目的 HTML 输出充满了空白。在 Jekyll 的 HTML 输出中删除空行的最简单方法是什么?有我可以使用的钩子吗?
我正在寻找合适的 place/hook 以便 jekyll build
处理所有事情。
有一个有用的插件: https://github.com/aucor/jekyll-plugins/blob/master/strip.rb
安装到 _plugins
目录后,您只需将以下括号添加到 _layouts/default.html
{% strip %}
[...]
{% endstrip %}