A JavaScript module and CSS file that allows syntax highlighting of source code snippets in an HTML page.

learn more… | top users | synonyms

32
votes
1answer
426 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 ...
23
votes
3answers
986 views

Is there a Content Delivery Network (CDN) that hosts Google Code Prettify?

Is there a Content Delivery Network (CDN) that is hosting google-code-prettify? I am putting together a blog on TypePad and would like to take advantage of a CDN if possible.
14
votes
21answers
842 views

What applications do you know of, that can reformat code?

I am looking for a list of code formatting and prettifying software; I have only found a few topics that all are language specific. This is not about syntax highlighting! If possible, I prefer ...
14
votes
5answers
2k views

How to use prettify with blogger/blogspot?

I'm using blogger.com to host some texts on programming, and I'd like to use prettify (same as stackoverflow) to nicely colour the code samples. How do I install the prettify scripts into the blog ...
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? ...
8
votes
4answers
2k views

Generate pretty diff html in Python

I have two chunks of text that I would like to compare and see which words/lines have been added/removed/modified in Python (similar to a Wiki's Diff Output). I have tried difflib.HtmlDiff but it's ...
7
votes
1answer
147 views

Stack Overflow formatting for Wordpress

I've become so accustomed to stack overflow style formatting that I find it a hassle to format things manually in HTML anymore - specifically for blog posts. Is there anything enabling stack overflow ...
7
votes
4answers
2k views

Is there a pretty printer for python data?

Working with python interactively, it's sometimes necessary to display a result which is some arbitrarily complex data structure (like lists with embedded lists, etc.) The default way to display them ...
6
votes
5answers
422 views

Is there a lang-vb or lang-basic option for prettify.js from Google?

Visual Basic code does not render correctly with prettify.js from Google. on Stack Overflow: Partial Public Class WebForm1 Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender ...
5
votes
2answers
170 views

How to combine WMD and prettify, like Stack Overflow?

Prettify needs class="prettyprint" to be add to <pre> or <code>. How to let WMD do this?
4
votes
2answers
531 views

prettify highlightning in a PRE with white-space:nowrap is one line in IE

In Internet Explorer, a PRE with a style of white-space:nowrap is causing the code in the PRE to be in one single line when I use prettify (http://code.google.com/p/google-code-prettify/). Doesn't a ...
3
votes
2answers
75 views

Prettify stripping Generics from C# code block

I'm having a slight issue with the Prettify script that I'm trying to integrate into my website to provide intelligent syntax highlighting of C# code blocks. All works fine until I introduce Generics, ...
3
votes
2answers
169 views

aligning or prettifying code in emacs

I remember this was possible in emacs, but don't know how. If I have something like: 'abc' => 1, 'abcabc' =>2, 'abcabcabc' => 3, How can I align the keys, arrows and values to something like ...
3
votes
1answer
123 views

How can I run Google's prettify to generate static HTML (w/ CSS) output?

I'm working on prettify'ing some auto-generated emails that often have code snippets in them. I want to use Google's prettify project to syntax highlight the code snippets. How can I invoke prettify ...
3
votes
1answer
344 views

rails: removing underscore from controller name

when I generate a two word named controller, like FooBar rails creates a controller and path like foo_bar this is not pretty. I would like to have the paths at least be FooBar. Possible? ...
2
votes
2answers
74 views

Javascript (library) to format and prettify source code of various languages [closed]

Am looking for a free Javascript (library) to format and highlight syntax of source code of various possible languages (mainly JSON, XML, java, javascript, python). Different libraries for different ...
1
vote
1answer
109 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 ...
1
vote
1answer
296 views

Using multiple CodeMirror editors on a single page?

I'm writing a page with examples that demonstrate the use of my js library. I'd like these examples to be editable and runnable, so I thought I have these options : Use prettify to display code on ...
1
vote
1answer
136 views

intellij maven output link

How can i manage that the maven output compile errors in intellij output window are shown as links? That would be very helpfull! i am currently using intellij idea 10.2. My output is just a bunch of ...
1
vote
2answers
170 views

javascript pretty html

Is there a javascript library that can make bad html readable? For example: <div><span></span></div> into <div> <span></span> </div>
1
vote
4answers
545 views

format xml, pretty print

I know of two ways to "pretty print", or format, xml: shell tools Hack 38 Pretty-Print XML Using a Generic Identity Stylesheet and Xalan what other free (as in beer) formatters are there? (aside ...
1
vote
1answer
56 views

Given a .SQL file on an internal website, what options are there for pretty formatting on the fly?

So I want to put the files up on my local server, for reference purposes and aside from my regular DVCS because this will turn into training material later. But I want to be able to pretty format the ...
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
1answer
40 views

How do I prevent code written in my <pre> from rendering?

So I am using the google code prettifier: http://code.google.com/p/google-code-prettify/ It does something similar to what stack overflow does here where when you write a block of code it beautifies ...
0
votes
1answer
26 views

How can I use stackoverflow style markup on my blog posts?

I've gotten really used to the features StackOverflow provides while writing technical posts. My favorite features are the 4 spaces which you can use to indent a <pre> style code block And ...
0
votes
1answer
27 views

Syntax Highlighting with scrolling at Blogspot

I am using blogspot.com. I want to make my coding highlighting. So, I use google code prettify api. <link href='http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css' ...
0
votes
0answers
24 views

command line prettify BSON

been working with mongo recently, which means a ton of very large nested hashes in (basically) json format. Currently I am piping json through python -mjson.tool in emacs, which works great for json, ...
0
votes
2answers
144 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
1answer
50 views

prettify doesn't highlight asp.net tags

I use google-code-prettify as my syntax highlighter, but i have a problem with asp.net tags, prettify doesn't recognize it, so code like this: <asp:ScriptManager ID="ScriptManager1" ...
0
votes
2answers
542 views

Online HTML pretty printer?

I'm looking for an online tool that can pretty print my mark up. Something that will indent properly, nest correctly, etc. The mark up will be valid XHTML; I just need it to look pretty. Suggestions?
0
votes
0answers
65 views

GWT library to highlight source code

I'm trying to find good ready to use gwt library to highlight source code, but I couldn't find any. Started to think about using http://code.google.com/p/google-code-prettify/ and simple call to JS ...
0
votes
2answers
127 views

which javascript library is github code prettify used

which javascript library is github code prettify used. I am looking for a good code prettify library.
0
votes
3answers
254 views

What is meant by to prettify JSON

I have heard of sites that prettify/beautify JSON. What does it actually mean?
0
votes
6answers
139 views

PHP: finding, replacing, shortening, and prettifying user links with <a> tags, ellipses, and link icons

When a user enters a URL, e.g. http://www.google.com, I would like to be able to parse that text using PHP, find any links, and replace them with <a> tags that include the original URL as an ...
0
votes
2answers
138 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 ...
0
votes
2answers
649 views

Integrate Syntax Highlighter (Prettify, Pygments,..) with Plone

I'm actually challenged with documenting aspects/problems/usages of inherited source code to teach and train co-workers as well as to identify problems that should be future maintenance tasks... The ...
0
votes
2answers
85 views

prettify will cause “script is busy” warning if the code is long

I'm using prettify by Google. How to fix?