How to support scrolling when using pygments with Jekyll

后端 未结 4 1570
眼角桃花
眼角桃花 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:19

    I was using Jekyll and Twitter Bootstrap, and the following is what worked for me in the end:

    .highlight pre {
        word-wrap: normal;
    }
    
    .highlight pre code {
        white-space: pre;
    }
    

提交回复
热议问题