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 ...
-2
votes
0answers
27 views
MATLAB graphing/saving files [closed]
Are there any better tools to saving vectorized matlab figures than panel and export_fig?
I was recently introduced to these two and liked them because of their ease of use and flexibility. (great ...
0
votes
1answer
17 views
Prettyprint XML
We have some XML stored as a blob in a MySQL database, and display it in a rich faces modal panel as raw text via a servlet. We'd like to use google prettyprinting (or another if anyone thinks there's ...
0
votes
0answers
20 views
Pretty print XML in Chrome Developer Tool
I can't figure out how to pretty print XML in Chrome Developer Tools. Both my "Preview" and "Response" tab under the "Network" panels shows the XML in its raw form.
I'm using Chrome 26.0.1410.65 ...
2
votes
1answer
24 views
printing a string with function calls
I have a ast.dump like so:
"Module(body=[Assign(targets=[Name(id='i', ctx=Store())], value=Num(n=0)), While(test=Compare(left=Name(id='i', ctx=Load()), ops=[Lt()], comparators=[Num(n=10)]), ...
0
votes
2answers
37 views
print out xquery sequence and exit
Is there a way to "die" in execution flow in an xquery file and output a nicely formatted printout of a sequence variable?
I'm trying something like:
return { fn:error(xs:QName("ERROR"), $xml) }
...
2
votes
1answer
36 views
How to get uWSGI Python exception message pretty printing?
Would like to know if there is a simple, easy way to have uWSGI pretty print exception messages (for Python specifically, not sure if the settings are particular to Python or not).
Thanks very much!
2
votes
1answer
45 views
Git Diff Indent/Pretty Print/Beautify Before Diff
Is there a way to make Git indent/beautify/pretty print two versions of C++ source files before diffing them?
I think my goal is obvious: I don't want Git to show me the myriads of changes introduced ...
0
votes
1answer
46 views
How to re-apply prettyPrint AFTER run_prettify.js has been loaded
I'm trying with Javascript code prettifier, and come up with a question.
If I do not assign class="prettyprint" to <pre> in static html, but wish to apply prettyprint later(e.g, when user ...
2
votes
1answer
31 views
pprint(): how to use double quotes to display strings?
If I print a dictionary using pprint, it always wraps strings around single quotes ('):
>>> from pprint import pprint
>>> pprint({'AAA': 1, 'BBB': 2, 'CCC': 3})
{'AAA': 1, 'BBB': 2, ...
1
vote
0answers
139 views
Angular Bootstrap Prettyprint directive not being invoked
Does anyone have experience using the angular-bootstrap-prettify.js prettyprint directive? I am having problems geting this to work.
Here is my Example: http://jsfiddle.net/mjxNV/
<div ng-app>
...
0
votes
1answer
31 views
Prettyprint Highlighter doesnt work
i want to use prettyprint on my webpage, but it doesnt work...
i have a html snippet, but the browser interprets it as real html code.
in the html head, i have implemented
<script ...
1
vote
1answer
131 views
How to get prettyprint to work on dynamically generated dom element
I'm using prettyprint plugin as syntax highlighter, it work fine when page loads but when i add new elements dynamically it doesn't work! I tried using prettyPrint() to invoke it after loading the new ...
2
votes
3answers
166 views
Scala - how to print case classes like (pretty printed) tree
I'm making a parser with Scala Combinators. It is awesome. What I end up with is a long list of entagled case classes, like: ClassDecl(Complex,List(VarDecl(Real,float), VarDecl(Imag,float))), just ...
3
votes
2answers
241 views
pretty print not working in twitter bootstrap
I was looking to see how to make this work and what I came up with is This question and answer.
So I included the css and js and I put the onload in the body tag as the answer states, I then created ...
0
votes
1answer
54 views
How to force pprint to print one list/tuple/dict element per line?
How can I force pprint() to print one list/tuple/dict element per line?
from pprint import pprint
my_var = ['one', 'two', ('red','green'), {'state' : 'Oregon', 'city' : 'Portland'}]
pprint(my_var)
...
0
votes
2answers
57 views
python print like this
I would like to print the following dictionary:
'test.com': {'@': {'NS': ['ns1.test.net', 'ns2.test.net']},
'api': {'A': ['123.122.2.1','121.161.51.29','111.30.12.14']}}
Like the ...
1
vote
2answers
55 views
How to remove prettyprint classes from my code
I have a jquery variable which holds html code with google's pretty-print classes to stylize the code.
<span class="pln">
echo </span>
<span class="str">"$output"</span>
...
3
votes
0answers
87 views
Pretty-Printing PyParsing Trees
Have anyone implemented pretty printing (preferrably using Python's builtin pprint module) of parse-trees outputted from PyParsing preferrably with indentation and alignment?
1
vote
1answer
136 views
Python 2.6 xml.dom.ext Object Missing?
I'm using a script I found online to convert some files through parsing some XML. The script was built in Python 2.6 and it's using a module that I believe doesn't come with 2.6 through what I've read ...
1
vote
1answer
71 views
pretty-printing a record using a custom method in Clojure
In Clojure 1.5.0, how can I provide a custom pretty-printer for my own record type, defined with defrecord.
(defrecord MyRecord [a b])
(defmethod print-method MyRecord [x ^java.io.Writer writer]
...
1
vote
3answers
150 views
Multi-line pretty-printing of (nested) collections in Java
I want to be able to (pretty-)print the contents of my maps, with newlines and indentation rather than on a single line; ignoring the toString methods of collections/iterables/etc; and recursing into ...
0
votes
4answers
113 views
How does one pretty print recursion depth in Haskell?
Let's say I have a binary tree.
main = putStrLn $ printTree tree ...
0
votes
2answers
69 views
pretty-printing malformed xml
I am working on a data migration and I am parsing and exporting html into xml. The html gets escaped, of course, when it goes into the xml, but to verify that parsing is happening properly, I am ...
0
votes
1answer
193 views
Enable pretty printing by default in IPython
How do I enable pretty printing by default in IPython? I haven't been able to find clear instructions anywhere on how to do this.
Thanks much!
6
votes
1answer
117 views
Printed length of a string in python
Is there any way to find (even a best guess) the "printed" length of a string in python? E.g. 'potaa\bto' is 8 characters in len but only 6 characters wide printed on a tty.
Expected usage:
s = ...
0
votes
0answers
305 views
Can I configure Jackson JSON pretty printing from annotations or from Spring MVC controller?
I'm using Jackson 1.9.6 (codehaus) for JSON serialization of my response bodies in a Spring MVC application, and I'm having trouble finding a way to configure pretty printing. All of the code ...
0
votes
1answer
123 views
Pretty print html output from Jekyll
Is there any way to pretty print html output from Jekyll?
For example, below is a snippet of html that Jekyll generates. Notice how the <p> tags have no indentation and have unnecessary line ...
2
votes
2answers
132 views
Refactoring C-style pretty-printing into C++-style pretty-printing
I want to refactor some printf/sprintf/fprintf statements into ostream/sstream/fstream statements. The code in question pretty-prints a series of integers and floating-point numbers, using whitespace ...
-6
votes
1answer
167 views
pls recommand a pretty print plugin for ultraEdit
there are trouble when I edit the raw javascript file with streaming style.
does anyone recommand some prettyprint tools for ultraedit as plugin.
that'll be appreciated further:)
4
votes
4answers
300 views
Javascript console.log(object) vs. concatenating string
I'm running this in node.js:
> x = { 'foo' : 'bar' }
{ foo: 'bar' }
> console.log(x)
{ foo: 'bar' }
undefined
> console.log("hmm: " + x)
hmm: [object Object]
undefined
What I don't ...
0
votes
2answers
64 views
How can I redirect pretty-print in IRB
I am trying to redirect pretty-print output in IRB but pp page >> results.txt does not work.
How can I redirect pretty print to file? I am using Windows OS.
My code
require 'nokogiri'
require ...
1
vote
1answer
84 views
Print (or output to file) table of number of steps for Euclid's algorithm
I'd like to print (or send to a file in a human-readable format like below) arbitrary size square tables where each table cell contains the number of steps required to solve Euclid's algorithm for the ...
0
votes
1answer
235 views
Empty lines while using minidom.toprettyxml
I've been using a minidom.toprettyxml for prettify my xml file.
When I'm creating XML file and using this method, all works grate, but if I use it after I've modified the xml file (for examp I've ...
0
votes
3answers
64 views
code complete reformatter, pretty printer
I would like a code reformatter (C is most important, other languages would be nice) that completely disregards the original whitespace/formatting and produces something that is readable.
I want a ...
2
votes
1answer
174 views
How to fix Google prettify handling of HTML escape sequences
google-code-prettify handles HTML escapes in code blocks by 'prettifying' the escape characters themselves, rather the escaped sequence. For example the:
original HTML <code class="prettyprint ...
10
votes
1answer
273 views
Pretty-print types and class template along with all its template arguments
Since typeid(T).name() doesn't return human understandable name of the type, it doesn't help us much if we want to print the name of the template arguments to some class template, especially when ...
-1
votes
1answer
145 views
Own pretty print option in python script
I'm outputting pretty huge XML structure to file and I want user to be able to enable/disable pretty print.
I'm working with approximately 150MB of data,when I tried xml.etree.ElementTree and build ...
0
votes
1answer
442 views
Beautify Ruby source code with Geany
How can I get Geany to beautify or prettify ruby code? What's the distinction between the two, anyhow?
My main interest is indents, that the indenting is consistent and correct.
I would like to ...
1
vote
0answers
212 views
Rails assets: reset bootstrap css attributes so they don't conflict with google code's prettifier
I'm trying to use Bootstrap and google code prettyfier together but the end result is rather dissapointing. In the Gemfile:
gem 'bootstrap-sass', '~> 2.2.1.1'
gem 'google-code-prettify-rails'
In ...
0
votes
1answer
230 views
Scrollbars for code prettified using google-code-prettify
I am using google-code-prettify for syntax highlighting in my blog which is hosted on blogger. My problem is I do not see the scrollbars appear around my pre-formatted code blocks even when the code ...
2
votes
3answers
156 views
Displaying Pretty Python Code in Python (or Other) GUI
I'm starting a simple little GUI for grading my student's python source code. Is there an easy way to automatically format display of the python code within a GUI? For example, pulling the color ...
1
vote
1answer
111 views
Regression tables for robust regressions in R
I've had some success using mtable from the memisc package to pretty-print results (APSR-style) for several regressions side-by-side, but I'm having trouble getting the same command to work for models ...
3
votes
2answers
94 views
Pretty Printing AST with Minimal Parentheses
I'm implementing a pretty-printer for a JavaScript AST and I wanted to ask if someone is aware of a "proper" algorithm to automatically parenthesize expressions with minimal parentheses based on ...
0
votes
1answer
207 views
Pretty print does not work with xsl transformation
I need to transform a xml document into another format. For that I'm using the build in Transformer object. Additionally I wanted to pretty print the result within the same step, but I allways get an ...
1
vote
2answers
177 views
XML to XML transformation with XSLT in Firefox and IE
I did a transformation from few XML formats to one standard.
My XSL looks like following one:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet ...
0
votes
1answer
76 views
Java APIs or Web services to format (or beautify) the html, xml, .java files
Are there any Java APIs (or web services) to beautify/format/pretty-print the html, xml and .java source code files?
So basically, I m indexing these various types of files in Apache Solr server and ...
3
votes
1answer
48 views
How to use perldb's x command from within user code?
What's the programmatic equivalent of the perl debugger's x command?
IOW, what's the function x such that the line
print x( $myvar );
in a Perl script will result in output with the same format as ...
1
vote
1answer
74 views
Haskell Leijen pretty-printer, can't handle indentation
I'm working on a pretty-printer for Lua, and I'm stuck with handling indentation for function syntax.
What I want is this: if function definition is short enough, all definition could be written in ...
0
votes
1answer
123 views
Text.PrettyPrint a better way to set indentation
I have a pretty-printer like that:
somefun = text "woo" $+$ nest 4 (text "nested text") $+$ text "text without indent"
fun = text "------" $+$ somefun
What I want from it is to print this:
------ ...
0
votes
1answer
351 views
Pretty Print JSON generated with a jbuilder template in Rails 3.2.8
Anyone have a way to pretty print JSON output from jbuilder?
I can pretty print JSON generated within a controller action with something like:
JSON.pretty_generate(some_json_object)
but once I ...


