如何在nocode类中使用google美化时添加行号?

时间:2013-12-30 01:15:59

标签: javascript prettify google-code-prettify

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

我正在查看谷歌的http://code.google.com/p/google-code-prettify/来显示我在网页内的Mathematica中编写的代码。

Mathematica不支持语言。所以,甚至认为我可以做到以下

<pre class="prettyprint linenums">
Manipulate[
 tick;
 Module[{a1, a2, a3, v1, v2, v3, h1, a1d, a2d, a3d, z},
]
</pre>

并且在显示行号方面起作用,但使用的语法高亮显示是关闭的,并且对于我正在使用的语言不正确,因为当然我不理解它。

我很高兴只是使用nocode类列出代码而没有突出显示,但我也希望能够获得行号。所以,我试过这个:

<pre class="prettyprint linenums"> 
<span class="nocode">  <!-- also tried <span class="nocode linenums"--->
Manipulate[
 tick;
 Module[{a1, a2, a3, v1, v2, v3, h1, a1d, a2d, a3d, z},
</span>
</pre>

但是行号不会显示在nocode类中。

有没有办法修改prettify.js并让它也显示nocode的行号?我将主要使用它来列出代码,但需要查看行号。

这是一个完整的MWE

<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8"/> 
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
</head>
<body onload="prettyPrint()">        

<pre class="prettyprint linenums">
<span class="nocode linenums">
Manipulate[
 tick;
 Module[{a1, a2, a3, v1, v2, v3, h1, a1d, a2d, a3d, z},

  Which[state == "init" || state2 == "on",
   state2 = "off";
   If[state == "init", state = "paused"];  
 state == "running" || state == "step",
   If[currentTime > maxTime, currentTime = 0]
   ]; 
]
</span>
</pre>

</body>
</html>

更新

感谢Gaby,它现在正在运作。这是最终结果

enter image description here

1 个答案:

答案 0 :(得分:2)

nocode类放在pre元素上..

<pre class="prettyprint linenums nocode">

演示 http://jsfiddle.net/gaby/8Jwja/1/


<强>更新

要显示所有数字(并在数字后显示没有点),您必须覆盖CSS

添加

ol.linenums{
    counter-reset:linenumber;
}
ol.linenums li{
    list-style-type:none;
    counter-increment:linenumber;
}
ol.linenums li:before{
    content: counter(linenumber);
    float:left;
    margin-left:-4em;
    text-align:right;
    width:3em;
}

演示 http://jsfiddle.net/gaby/8Jwja/2/