我在做杰基尔发球,上面有红色标记。
我将如何使这些消失:

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

最佳答案

使用syntax_highlighter: rouge因为error清楚地表明kramdown.coderay已被弃用:
Deprecation: You are using 'kramdown.coderay' in your configuration, please use 'syntax_highlighter_opts' instead.

08-25 21:49