Regarding Support for the Marquee tag
chandra prakash agrawal <[email protected]> Mon, 13 Feb 2012 11:47:48 +0530
| Newsgroups | gmane.comp.web.html-tidy.user |
|---|---|
| Message-ID | <CA+WBS-DWGoHJjZsChuZ96tbtAfv_pJi88b3+wL58K9SS0e4z9w@mail.gmail.com> |
Hi
I am using the libtidy.dll in my project, but i am getting a problem when
my Content has the bad* marquee tag*, the parser of tidy is not able to
parse the* bad marquee tag in the correct marquee tag and it returns the
content \0*. so can you please fix or give me the suggestion.
For example
using (Document doc = new
Document("<html><title>test</title><body>*<marque>asd</marque>*</body></html>"))
{
doc.ShowWarnings = false;
doc.Quiet = true;
doc.OutputXhtml = true;
doc.CleanAndRepair();
string parsed = doc.Save();
Console.WriteLine(parsed);
}
*when the doc.save is called it return the "\0" in the parsed string. so
can you please resolve it.*
Thanks
Chandra Agrawal