我正在做jekyll为服务,并且有红色的标记。我要怎么让这些东西消失
Deprecation: Please change 'use_coderay' to 'enable_coderay' in your configuration file.
Deprecation: You are using 'kramdown.coderay' in your configuration, please use 'syntax_highlighter_opts' instead.在我的配置文件中,我已经有了以下行:
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
use_coderay: enable_coderay发布于 2017-02-28 07:00:21
enable_coderay : true
syntax_highlighter : coderay
syntax_highlighter_opts: {} 发布于 2017-02-28 07:59:46
使用syntax_highlighter: rouge作为错误,明确表示不推荐kramdown.coderay:
Deprecation: You are using 'kramdown.coderay' in your configuration, please use 'syntax_highlighter_opts' instead.
https://stackoverflow.com/questions/40615622
复制相似问题