0

For some reason, my line numbers won't show. Is this a known issue? Code coloring works fine. It's just the line numbers that won't show

HTML

<pre class="prettyprint linenums"><code class="language-html">
    &lt;h1 class="test"&gt;This is a header&lt;/h1&gt;
    &lt;p&gt;This is a paragraph&lt;/p&gt;
</code></pre>

Does anyone know what can cause this?

Kriem
  • 8,666
  • 16
  • 72
  • 120

2 Answers2

0

Just make sure you include run_prettify.js in your page, specifying parameters such as; autoload, lang, and skin.

I did this and line numbers just came up!

Read more here http://practicalseries.com/1001-webdevelopment/21-02-codefrag.html

0

Found the issue. It had to do with setting list item to display:inline-block. Removing that fixed it.

Kriem
  • 8,666
  • 16
  • 72
  • 120