How to convert HTML to XHTML? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T05:36:51Z http://stackoverflow.com/feeds/question/138555 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml 5 How to convert HTML to XHTML? JRoppert 2008-09-26T10:00:18Z 2008-09-30T11:40:04Z <p>I need to convert HTML documents into valid XML, preferably XHTML. What's the best way to do this? Does anybody know a toolkit/library/sample/...whatever that helps me to get that task done?</p> <p>To be a bit more clear here, my application has to do the conversion automatically at runtime. I don't look for a tool that helps me to move some pages to XHTML manually.</p> http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml/138561#138561 13 Answer by Prakash for How to convert HTML to XHTML? Prakash 2008-09-26T10:02:32Z 2008-09-26T10:26:02Z <p><a href="http://www.ibm.com/developerworks/library/x-tiptidy.html" rel="nofollow"><strong>Convert from HTML to XML with HTML Tidy</strong></a></p> <p><a href="http://tidy.sourceforge.net/#binaries" rel="nofollow"><strong>Downloadable Binaries</strong></a></p> <p>JRoppert, For your need, i guess you might want to look at the <a href="http://sourceforge.net/cvs/?group_id=27659" rel="nofollow">Sources</a></p> <pre><code>c:\temp&gt;tidy -help tidy [option...] [file...] [option...] [file...] Utility to clean up and pretty print HTML/XHTML/XML see http://tidy.sourceforge.net/ Options for HTML Tidy for Windows released on 14 February 2006: File manipulation ----------------- -output &lt;file&gt;, -o write output to the specified &lt;file&gt; &lt;file&gt; -config &lt;file&gt; set configuration options from the specified &lt;file&gt; -file &lt;file&gt;, -f write errors to the specified &lt;file&gt; &lt;file&gt; -modify, -m modify the original input files Processing directives --------------------- -indent, -i indent element content -wrap &lt;column&gt;, -w wrap text at the specified &lt;column&gt;. 0 is assumed if &lt;column&gt; &lt;column&gt; is missing. When this option is omitted, the default of the configuration option "wrap" applies. -upper, -u force tags to upper case -clean, -c replace FONT, NOBR and CENTER tags by CSS -bare, -b strip out smart quotes and em dashes, etc. -numeric, -n output numeric rather than named entities -errors, -e only show errors -quiet, -q suppress nonessential output -omit omit optional end tags -xml specify the input is well formed XML -asxml, -asxhtml convert HTML to well formed XHTML -ashtml force XHTML to well formed HTML -access &lt;level&gt; do additional accessibility checks (&lt;level&gt; = 0, 1, 2, 3). 0 is assumed if &lt;level&gt; is missing. Character encodings ------------------- -raw output values above 127 without conversion to entities -ascii use ISO-8859-1 for input, US-ASCII for output -latin0 use ISO-8859-15 for input, US-ASCII for output -latin1 use ISO-8859-1 for both input and output -iso2022 use ISO-2022 for both input and output -utf8 use UTF-8 for both input and output -mac use MacRoman for input, US-ASCII for output -win1252 use Windows-1252 for input, US-ASCII for output -ibm858 use IBM-858 (CP850+Euro) for input, US-ASCII for output -utf16le use UTF-16LE for both input and output -utf16be use UTF-16BE for both input and output -utf16 use UTF-16 for both input and output -big5 use Big5 for both input and output -shiftjis use Shift_JIS for both input and output -language &lt;lang&gt; set the two-letter language code &lt;lang&gt; (for future use) Miscellaneous ------------- -version, -v show the version of Tidy -help, -h, -? list the command line options -xml-help list the command line options in XML format -help-config list all configuration options -xml-config list all configuration options in XML format -show-config list the current configuration settings Use --blah blarg for any configuration option "blah" with argument "blarg" Input/Output default to stdin/stdout respectively Single letter options apart from -f may be combined as in: tidy -f errs.txt -imu foo.html For further info on HTML see http://www.w3.org/MarkUp </code></pre> http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml/138562#138562 1 Answer by Ólafur Waage for How to convert HTML to XHTML? Ólafur Waage 2008-09-26T10:02:41Z 2008-09-26T10:02:41Z <p>Have you tried <a href="http://www.it.uc3m.es/jaf/html2xhtml/" rel="nofollow">this one</a> and does it suffice?</p> http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml/138584#138584 0 Answer by Bravax for How to convert HTML to XHTML? Bravax 2008-09-26T10:06:20Z 2008-09-26T10:06:20Z <p>The easiest way is to set your Visual Studio IDE to identify the changes you need to make. You can do this in Visual Studio 2008 by going to: Tools, Options, Text Editor, HTML, Validation and choosing the appropriate target. Possibly XHTML 1.1 or XHTML 1.0 Transitional.</p> <p>For some information on the different types, read: <a href="http://msdn.microsoft.com/en-us/library/aa479043.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa479043.aspx</a></p> <p>Then you need to work through the points highlighted on your page.</p> http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml/138609#138609 2 Answer by TcKs for How to convert HTML to XHTML? TcKs 2008-09-26T10:16:38Z 2008-09-26T10:16:38Z <p>You can use a <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">HTML Agility Pack</a>. Its open-source project from CodePlex.</p> http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml/152669#152669 2 Answer by hsivonen for How to convert HTML to XHTML? hsivonen 2008-09-30T11:40:04Z 2008-09-30T11:40:04Z <p>The <a href="http://about.validator.nu/htmlparser/" rel="nofollow">Validator.nu HTML Parser</a> comes with an HTML2XML sample program that does the conversion using the HTML5 parsing algorithm and infoset coercion rules.</p>