0
votes
1answer
39 views
html tidy and rails apps - erb or rthml files. Ruby alternative?
Hi. I just installed HTML Tidy plugin for eclipse. I added the html.erb file type and now it will do its magic on my erb files. However it puts in the title tag and changes a lot o …
0
votes
2answers
144 views
How do I stop HTML Tidy from removing my closing tag?
Currently HTML Tidy is changing any empty HTML tag and combining them into one, for example:
<script src="somescript.js"></script>
Turns into:
<script src="somes …
1
vote
1answer
36 views
HTML Tidy license question
I'm looking to use the HTML Tidy source code and modify it to add a few more features. Having read the license, I'm not quite sure if I will have to release the source of my modifi …
1
vote
1answer
113 views
How to use the HTML Tidy .Net DLL wrapper in PowerShell?
I'm trying to use the HTML Tidy .Net wrapper in PowerShell 2.0.
Here is a working example using C# (TestIt.cs included in the wrapper distribution):
using Tidy;
Document tdoc = n …
3
votes
3answers
247 views
Configure HTML Tidy to ignore PHP short start and end tags when inside html attributes
How can I keep HTML Tidy from converting PHP short tags when used as values in html attributes?
Here's an example of what it currently does. It converts this:
<input value='&l …
2
votes
5answers
1k views
Notepad++ HTML Tidy
Is HTML Tidy for Notepad++ broken? None of the commands except Tidy (the first one) work. They don't show any message, even with all text selected. I really need Tidy to work, or i …
1
vote
2answers
459 views
Using libtidy for iPhone app
I'm trying to use libtidy for an iPhone app (since the iPhone 2.2 SDK doesn't include NSXMLDocument which has tidy functionality) but I get a linker error saying "library not found …
0
votes
3answers
259 views
Strange problem calling a .DLL from C#
Hey all,
I'm trying to call the HtmlTidy library dll from C#. There's a few examples floating around on the net but nothing definitive... and I'm having no end of trouble. I'm pre …
2
votes
1answer
215 views
How do I set vim 7’s html tidy options for “utf-8” encoding?
I need to run tidy in vim, using the usual:
:compile tidy
:make
However, if I'm on an utf-8 file, I get errors that I don't see if I run tidy outside of vim, i.e.,
tidy -e -q -u …
3
votes
5answers
420 views
Screenscraping the ugliest HTML you’ve ever seen in your life
I'm using PHP and libtidy to attempt to screen scrape what might possibly be the most horrendous and malformed use of HTML tables in history. The site closes few table, tr, td, fon …
1
vote
1answer
302 views
Installing Html Tidy
I'm running Mac OS X with Apache/2.0.59 (Unix) PHP/5.2.5 DAV/2. I've never administered Apache or PHP before so somethings aren't really that obvious to me.
I'm trying to get PHP …
0
votes
1answer
149 views
HTML Tidy, Don’t move those comments!
I was working with html-tidy and a couple of my comments were moved from the head to the root of the document. Is there anyway to avoid this behavior?
(I'm trying to turn some rea …
0
votes
3answers
417 views
How to keep my non-breaking spaces with HTML Tidy (PHP)?
I've just noticed that tidy_repair_string() is removing my non-breaking spaces from empty elements causing my table to collapse. Basically I've put in:
<td> < …
1
vote
2answers
430 views
xslt: remove duplicate xml header
html Tidy gives this as output for some reason:
<?xml version="1.0" encoding="utf-16"?>
<?xml version="1.0" encoding="utf-16"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD X …
