Tagged Questions
Prettyprint (or pretty-print) is the application of any of various stylistic formatting conventions to text, source code, markup, and other similar kinds of content. These formatting conventions usually consist of changes in positioning, spacing, color, contrast, size and similar modifications intended to make the content easier for people to view, read and understand.
141
votes
27answers
41k views
How to pretty-print JSON script?
Is there a (*nix) command-line script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
...
90
votes
17answers
74k views
how to pretty print xml from Java
I have a Java String that contains XML, with no line feeds and indentations. I would like to turn in into a String with nicely formatted XML. How do I do this?
String unformattedXml = ...
64
votes
4answers
2k views
Pretty-print C++ STL containers
Please take note of the updates at the end of this post.
Update: I have created a public project on GitHub for this library!
I would like to have a single template that once and for all takes care ...
40
votes
9answers
23k views
Is there a function in Python to print all the current properties and values of an object?
So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
39
votes
12answers
16k views
Javascript Beautifier
I am looking for a code beautifier that supports javascript and works on both windows and linux and can be used in batch scripts. Any recommendations?
35
votes
8answers
8k views
How to turn off the Eclipse code formatter for certain sections of Java code?
I've got some Java code with SQL statements written as Java strings (please no OR/M flamewars, the embedded SQL is what it is - not my decision).
I've broken the SQL statements semantically into ...
31
votes
7answers
4k views
Wanted: Command line HTML5 beautifier [closed]
Wanted
A command line HTML5 beautifier running under Linux.
Input
Garbled, ugly HTML5 code. Possibly the result of multiple templates. You don't love it, it doesn't love you.
Output
Pure beauty. ...
31
votes
34answers
3k views
Do you try to make your code look pretty?
I might be one anal programmer, but I like code that looks good from a distance. I just found myself lining up a CSS style so that instead of this:
#divPreview {
text-align: center;
vertical-align: ...
25
votes
9answers
17k views
Pretty printing XML with javascript
I have a string that represents a non indented XML that I would like to pretty-print. For example:
<root><node/></root>
should become:
<root>
<node/>
</root>
...
24
votes
5answers
15k views
How can I “Pretty” format my JSON output in Ruby on Rails?
I would like my JSON output in Ruby on Rails to be "pretty" or nicely formatted. Right now, I call the to_json method and my JSON is all on one line. At times this can be difficult to see if there ...
16
votes
6answers
2k views
Pretty print a tree
Let's say I have a binary tree data structure defined as follows
type 'a tree =
| Node of 'a tree * 'a * 'a tree
| Nil
I have an instance of a tree as follows:
let x =
Node
(Node ...
16
votes
12answers
14k views
Is there a pretty print for PHP?
I'm fixing some PHP scripts and I'm missing ruby's pretty printer. i.e.
require 'pp'
arr = {:one => 1}
pp arr
will output {:one => 1}. This even works with fairly complex objects and makes ...
14
votes
6answers
2k views
JSON pretty print using JavaScript
Is there a JavaScript JSON pretty print library (with colors, indentation, etc.)?
14
votes
3answers
579 views
How to handle widespread code format changes in a git repository
We have a project with around 500,000 lines of code, managed with git, much of it several years old. We're about to make a series of modifications to bring the older code into conformance with the ...
12
votes
5answers
2k views
How to Pretty print VBA code?
I need to "pretty print" VBA code into a Word document, retaining the color scheme from the VBE editor. I've been looking for free programs or methods to do this, but found nothing usable so far. Any ...
12
votes
21answers
5k views
Clearest way to comma-delimit a list (Java)?
Using a comma is just to make it specific - it could be any delimiter, so using List's default toString() doesn't help. (The question could be rephrased as: "best way to implement List's toString?")
...
11
votes
2answers
189 views
Preferred method for viewing code generated by Template Haskell
As you know, Template Haskell is used to generate various kinds of AST splices programmatically at compile-time.
However, a splice can often be very opaque, and it is often difficult to discern what ...
11
votes
3answers
8k views
Java console pretty printing: returning to the start of a line
In Java, how can I return to the start of a line and overwrite what has already been output on the console?
System.out.print(mystuff+'\r');
does not appear to work.
thanks in advance
10
votes
3answers
2k views
How do I print out a tree structure?
I'm trying to improve performance in our app. I've got performance information in the form of a tree of calls, with the following node class:
public class Node
{
public string Name; // method ...
10
votes
4answers
3k views
Algorithm for neatly indenting SQL statements (Python implementation would be nice)
I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.
I don't personally know of a good coding style for indenting SQL - how ...
9
votes
4answers
281 views
A list of useful python commands for Vim?
I was looking for a quick way to autoformat/pretty-print JSON in Vim the other day and found this great little command on SO: :%!python -m json.tool
That sent me on a search for a list of other ...
9
votes
1answer
4k views
Pretty-printing of numpy.array
I'm curious, whether there is any way to print formated numpy.arrays, e.g., in the way similar to this:
x = 1.23456
print '%.3f' % x
If I want to print the numpy.array of floats, it prints several ...
9
votes
6answers
2k views
Nice bit of code to format an xml string
Anyone got a ready made function that will take an XML string and return a correctly indented string?
eg
...
8
votes
3answers
143 views
Printing Primitive Arrays in Clojure
I am at the REPL, and I create a java array:
=> (def arr (double-array [1 2 3]))
Of course, if I want to look at my arr, I get:
=> arr
#<double[] [D@2ce628d8>
Is there anything I can ...
8
votes
3answers
13k views
Pretty-printing output from javax.xml.transform.Transformer with only standard java api (Indentation and Doctype positioning)
Using the following simple code:
package test;
import java.io.*;
import javax.xml.transform.*;
import javax.xml.transform.stream.*;
public class TestOutputKeys {
public static void main(String[] ...
8
votes
3answers
3k views
Best way to pretty print XML response in grails
given this in a grails action:
def xml = {
rss(version: '2.0') {
...
}
}
render(contentType: 'application/rss+xml', xml)
i see this:
...
7
votes
5answers
1k views
Any way to properly pretty-print ordered dictionaries in Python?
I like the pprint module in Python. I use it a lot for testing and debugging. I frequently use the width option to make sure the output fits nicely within my terminal window.
It has worked fine until ...
7
votes
1answer
310 views
best way to implement custom pretty-printers
The documentation for the pprint module mentions that the method PrettyPrinter.format is intended to make it possible to customize formatting.
I gather that it's possible to override this method in a ...
7
votes
3answers
627 views
Is there a PowerShell code formatter / pretty printer?
I'm looking for a source code beautifyer for PowerShell programs. Ideally, it would be CLI based, but any solution is acceptable. I would like to avoid configuring a generic pretty printer tool; I'd ...
7
votes
1answer
947 views
Haskell — problem with pretty-printing a list
I'm new to haskell, and i read through and digested Learn You A Haskell For Great Good, trying out a couple of things along the way. For my first project i wanted to try the classic: FizzBuzz. So i ...
7
votes
1answer
990 views
How can I pretty-print XML source using VB6 and MSXML?
I've been looking after this for months now and I mostly found sites asking the same question.
The answers I did found were always for .NET or C++ or involved XSLT.
6
votes
3answers
258 views
Configurable XML pretty printer for java
I need to format an xhtml file which has some elements included in a different namespace.
I have searched a whole day for a really good mechanism for pretty printing an xml file in java. I have ...
6
votes
1answer
340 views
Pretty printing math in C# desktop application
What is the best method of printing math equations in a C# (winforms) desktop application? The format for the source is not important; I can generate almost anything with a little effort. What is ...
6
votes
5answers
1k views
Pretty-printing a binary tree in C (and other imperative languages)
(First-time poster and rather new in programming, so be patient, please!)
I'm interested in both an efficient general algorithm for printing formatted binary trees (in a CLI environment) and a C ...
6
votes
2answers
259 views
PPRINT in Emacs Lisp?
Emacs Lisp does not seem to have a PPRINT function. How do you pretty print an S-EXP in elisp the way you can in Common Lisp?
Thanks!
6
votes
2answers
2k views
Beautify Javascript and CSS in Firebug?
Is there a way to beautify javascript and css in Firebug? I'd like to be able to view formatted js instead of the compressed version :).
6
votes
3answers
2k views
Formatting floats in Python without superfluous zeros
How to format a float so it does not containt the remaing zeros? In other words, I want the resulting string to be as short as possible..?
Like:
3 -> "3"
3. -> "3"
3.1 -> "3.1"
3.14 -> ...
6
votes
4answers
2k views
How do I pretty-print HTML with Nokogiri?
I wrote a web crawler in Ruby and I'm using Nokogiri::HTML to parse the page. I need to print the page out and while messing around in IRB I noticed a pretty_print method. However it takes a parameter ...
5
votes
2answers
215 views
Possible to pretty print JSON in Grails 1.3.7?
The JSON in question is being read in from a RESTful service, and I would like to print it out (to console, although in .gsp would be fine also) for debugging purposes. Groovy 1.3.7 (current as of ...
5
votes
3answers
213 views
Unpretty Print Source Code
Is there any tool that will "un-pretty print" source code?
Basically, get rid of all spaces, all comments, all new lines and transform the code into one humongous line?
I don't want obfuscation
Its ...
5
votes
3answers
189 views
user defined printer in ocaml
printf, fprintf etc. all accept the %a conversion.
The manual says for %a:
"user-defined printer. Takes two arguments and apply the first one to outchan (the current output channel) and to the ...
5
votes
2answers
289 views
Looking for a C++ code prettifier that will remove empty lines
I've just taken over a large, poorly formatted mass of C++ code.
I'm looking for a code prettifier with two specific features.
Remove superfluous access modifiers
Clean up white space in a nice way. ...
5
votes
1answer
145 views
Modifying the pretty printer from haskell-src-exts
The haskell-src-exts package has functions for pretty printing a Haskell AST. What I want to do is change its behavior on certain constructors, in my case the way SCC pragmas are printed. So ...
5
votes
7answers
821 views
Is there a stylesheet or Windows commandline tool for controllable XML formatting, specifically putting attributes one-per-line?
I am searching for an XSLT or command-line tool (or C# code that can be made into a command-line tool, etc) for Windows that will do XML pretty-printing. Specifically, I want one that has the ability ...
5
votes
2answers
1k views
A command-line HTML pretty-printer: Making messy HTML readable
I'm looking for recommendations for HTML pretty printers which fulfill the following requirements:
Takes HTML as input, and then output a nicely formatted/correctly indented but "graphically ...
5
votes
1answer
6k views
Formatting Ruby's prettyprint
Is it possible to change the width that prettyprint (require 'pp') uses when formatting output? For example:
"mooth"=>["booth", "month", "mooch", "morth", "mouth", "mowth", "sooth", "tooth"]
...
5
votes
1answer
506 views
5
votes
6answers
1k views
Converting Source ASCII Files to JPEGs
I publish technical books, in print, PDF, and Kindle/MOBI, with EPUB on the way.
The Kindle does not support monospace fonts, which are kinda useful for source code listings. The only way to do ...
4
votes
3answers
137 views
Pretty print ByteString to hex nibble-wise
What's an idiomatic way of treating a bytestring nibblewise and pretty printing its hexadecimal (0-F) representation?
putStrLn . show . B.unpack
-- [1,126]
Which, upon further work
putStrLn . show ...
4
votes
3answers
87 views
How to make a simple prettyprint <pre> with jquery
http://jsfiddle.net/JamesKyle/L4b8b/
I am attempting to make an extremely simple prettyprint function with jQuery, but I do not know how to find elements, attributes, and values (shown in the ...