Tagged Questions
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 ...
2
votes
2answers
181 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
2answers
200 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 < and all the > with >.
Is this really necessary? Is ...
0
votes
1answer
51 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
48 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
2answers
691 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?