I'm looking for documentation (officially documentation if it is possible) for TagSoup and jTidy libraries.

I want use this libraries to manipulate html "tagsoup" files that include xml tags with different namespaces mixed between html (html, xhtml or html5) tags.

I have tested HTMLCleaner, NekoHTML and Jericho, but i don't find documentation for jTidy and TagSoup, apart from simplest examples to clear a file.

I need documentation about manipulate contents, replace tags, extract info, etc...

Thanks

link|improve this question

67% accept rate
2  
Did you consider Jsoup? It can't be done better/easier. It has a good Cookbook as well. – BalusC Dec 15 '10 at 17:01
I'm testing Jsoup. She look easy but view examples code, it seem no thread-safe. am i right? – angelcervera Dec 15 '10 at 17:59
feedback

1 Answer

up vote 0 down vote accepted

The answer to a similar question on the tagsoup-friends google group may help:

Documentation for TagSoup

You've probably already seen them, but the javadoc for JTidy is available here: http://jtidy.sourceforge.net/apidocs/index.html

link|improve this answer
So TagSoup use SAX API, but ¿JTidy? :( Thanks – angelcervera Dec 15 '10 at 17:33
JTidy does not, it is basically something like you give it an input stream, get it parsed and then get the output from the output stream. – Gilbeg Feb 27 at 4:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.