39
votes
1answer
523 views
+500

Can prettify.js be extended to support Mathematica?

The mathematica.SE is currently in private beta and will open to the public in a few days. Stack Overflow and related sites use prettify.js, however Mathematica is not a supported language. It would ...
9
votes
2answers
232 views

How to get Google Prettify to render more like Visual Studio

I'm using Googles excellent Code Prettify and I'm quite happy with it. But: Does anybody happen to have a alternate CSS stylesheet so it'll render a bit more like Visual Studios default coloring? ...
1
vote
1answer
111 views

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

I am using prettify: <pre class="prettyprint linenums"> some code </pre> It works but the line number show every 5 lines and not for every line. I am using these files <link ...
0
votes
1answer
29 views

Google Prettify: Line numbers won't show

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 ...
0
votes
2answers
146 views

Using Google Prettify to display HTML and CSS code. Do I have to replace every < > with html name?

Google Prettify wasn't displaying HTML properly for me until I found on stackoverflow that I should replace all the < with &lt; and all the > with &gt;. Is this really necessary? Is ...
0
votes
2answers
140 views

Using Prettify on dynamically-generated code

I'm using Prettify for syntax highlighting, but it doesn't work on dynamically generated code. I have a form that when submitted generates code and displays it (without refreshing) in <div ...