1
vote
1answer
37 views
Using Tidy to clean HTML, HTML content is being changed, encoding problem?
I am fetching HTML from a smarty template and need to clean it (simply want to remove extra whitespace, and format / indent the HTML nicely), I'm using tidy to do something like:
$html = …
0
votes
0answers
19 views
.NET version of HTML Tidy?
Does anyone know if there's a native port of HTML Tidy available for .NET? In Sourceforge, there's a TidyNet project - which hasn't been updated since 2005 and seems like a wrapper only. Java port …
0
votes
2answers
62 views
How to best use JTidy with a Spring servlet container?
I have a Java servlet container using the Spring Framework. Pages are generated from JSPs using Spring to wire everything up. The resulting HTML sent to the user isn't as, well, tidy as I'd like. …
1
vote
1answer
49 views
How to use libtidy with tidyParseBuffer()?
I'm trying to clean some HTML with libtidy (C language), the problem is:
I want to construct a TidyDoc (a tree-like structure) with tidyParseBuffer().
I have no problem with tidyParseFile(); about …
0
votes
2answers
80 views
HTML tag replacement regex not quite working correctly
This is a follow up to another question of mine. The solution I found worked great for every one of the test cases I threw at it, until a case showed up that eluded me the first time around.
My goal …
1
vote
3answers
185 views
Configuring and Using HTML Tidy
I would like to use Textmate's built-in Tidy (Ctrl+Shift+H) functionality to indent my HTML 'without modifying anything' in the code. I write pretty neat HTML already, I just need Tidy to indent my …
0
votes
1answer
99 views
HTML tidy/cleaning in Ruby 1.9
I'm currently using the RubyTidy Ruby bindings for HTML tidy to make sure HTML I receive is well-formed. Currently this library is the only thing holding me back from getting a Rails application on …
1
vote
2answers
231 views
Question on how to configure HTML Tidy in Notepadd++
How do I make it so that HTMLTidy in Notepad++ only indents when I select "TextFX-->TextFX HTML Tidy-->TiDy Clean Document-nowrap"? All I want it to do is indent tags. But it also changes the Doctype, …
1
vote
1answer
238 views
Question about HTMLTidy in Notepad++
How do I make it so that instead of indenting my elements by multiples of 2 spaces (when formatting without wrapping is selected), HTMLTidy indents them by multiples of tabs (4 spaces long but only 1 …
0
votes
1answer
142 views
Pure Python Tidy-like application/library
Hi, I'm looking for a pure Python library which works like Tidy. Please kindly advise. Thank you.
0
votes
2answers
107 views
Tidy causing bad spacing issues (JTidy)
We are using JTidy to clean up some html for sax processing. We've had a lot of trouble around spacing issues as shown in this example:
Html
<i>stack<span
…
1
vote
1answer
99 views
Beyond Compare 3.0 and XML Tidy, but save Original Format
Hi,
I am using Beyond Compare 3.0 and using the XML tidy and XML tidied with sorted attributes plugins. Its great and while I would like it to show me the "tidied" XML, Once I resolve me merge, I …
0
votes
1answer
144 views
Tidy gives non-standard HTML
Hi,
I use Tidy to clean and make HTML files compliant to HTML/XHTML. However, output contains non-standard attributes values like :
<table id='abc'>...
or
<input type='button' />
…
1
vote
4answers
366 views
Clean up PHP/HTML pages
Does anybody know of a good tool that cleans up files with php and html in it? I've used Tidy before but it doesn't do a good job at leaving the php code alone. I know there are various …
0
votes
1answer
181 views
Beautiful Soup and uTidy
I want to pass the results of utidy to Beautiful Soup, ala:
page = urllib2.urlopen(url)
options = dict(output_xhtml=1,add_xml_decl=0,indent=1,tidy_mark=0)
cleaned_html = tidy.parseString(page.read(), …
