How to support scrolling when using pygments with Jekyll

后端 未结 4 1540
眼角桃花
眼角桃花 2020-12-29 07:38

Is it possible to use horizontal scrolling rather than text wrapping in a code section highlughted with pygments when working in Jekyll.

Source of document:

4条回答
  •  隐瞒了意图╮
    2020-12-29 08:17

    As for me, using the latest and greates Jekyll & highlighter releases, this nailed the issue:

    /* Make code block overflow */
    .highlight pre {
      display: inline-block;
    }
    

提交回复
热议问题