1

有没有办法为 Rouge 中的所有代码块默认启用 start_inline?

我正在使用 Jekyll 3 (rouge, kramdown) 写博客,并且我有很多 PHP 代码块。我希望语法高亮工作而不必将所有 ```php 标记替换为 ```php?start_inline=1

4

1 回答 1

0
kramdown:
  syntax_highlighter: rouge
  syntax_highlighter_opts: # Rouge Options › https://github.com/jneen/rouge#full-options
    css_class: highlight
    # default_lang: console
    span:
      line_numbers: false
    block:
      line_numbers: true
      start_line: 1
于 2021-11-15T19:03:43.170 回答