如何从 Jekyll 向 RedCloth(纺织处理器)传递参数

How to pass parameters to RedCloth (Textile processor) from Jekyll

RedCloth FAQ 描述了使用 fold_lines 选项来禁用硬中断。当作为 Jekyll 构建过程的一部分被调用时,将 fold_lines 传递给 RedCloth 的最简单方法是什么?

(我只是在 Jekyll configuration guide 中遗漏了什么吗?

在您的 _config.yml 文件中,您可以使用 :

redcloth:
  hard_breaks: false

来自 Jekyll converters:textile.rb

# List of attributes defined on RedCloth
# (from https://github.com/jgarber/redcloth/blob/master/lib/redcloth/textile_doc.rb)
attrs = ['filter_classes', 'filter_html', 'filter_ids', 'filter_styles',
            'hard_breaks', 'lite_mode', 'no_span_caps', 'sanitize_html']