How to add line numbers to all lines in Google Prettify?

后端 未结 3 1786
小鲜肉
小鲜肉 2020-12-24 01:06

I am using prettify:

  some code

It works but the line number show every 5 lines an

3条回答
  •  自闭症患者
    2020-12-24 01:48

    The root cause is list-style-type: none in prettify.css:

    /* Specify class=linenums on a pre to get line numbering */
    ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
    li.L0,
    li.L1,
    li.L2,
    li.L3,
    li.L5,
    li.L6,
    li.L7,
    li.L8 { list-style-type: none /* <<< THIS is the cause! */ }
    /* Alternate shading for lines */
    li.L1,
    li.L3,
    li.L5,
    li.L7,
    li.L9 { background: #eee }
    

    You can either remove that rule or override it with:

    .linenums li {
        list-style-type: decimal;
    }
    

提交回复
热议问题