如何将参数传递给Jekyll的RedCloth(Textile处理器)

时间:2015-05-19 19:07:30

标签: jekyll textile redcloth

RedCloth FAQ描述了使用xunit.runner.dnx选项禁用硬分解。当它被称为Jekyll的构建过程的一部分时,将fold_lines传递给RedCloth的最简单方法是什么?

(我只是遗漏了Jekyll configuration guide中的内容吗?

1 个答案:

答案 0 :(得分:2)

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

redcloth:
  hard_breaks: false

来自杰基尔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']