How do I validate XHTML with nokogiri? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-11T14:01:27Z http://stackoverflow.com/feeds/question/1287952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1287952/how-do-i-validate-xhtml-with-nokogiri 3 How do I validate XHTML with nokogiri? NeilS http://stackoverflow.com/users/149397 2009-08-17T13:25:42Z 2009-08-17T17:54:01Z <p>I've found a few posts alluding to the fact that you can validate XHTML against its DTD using the nokogiri gem. Whilst I've managed to use it to parse XHTML successfully (looking for 'a' tags etc.), I'm struggling to validate documents.</p> <p>For me, this:</p> <pre><code>doc = Nokogiri::XML(Net::HTTP.get(URI.parse("http://www.w3.org"))) puts doc.validate </code></pre> <p>results in a whole heap of:</p> <pre><code>[ #&lt;Nokogiri::XML::SyntaxError: No declaration for element html&gt;, #&lt;Nokogiri::XML::SyntaxError: No declaration for attribute xmlns of element html&gt;, #&lt;Nokogiri::XML::SyntaxError: No declaration for attribute lang of element html&gt;, #&lt;Nokogiri::XML::SyntaxError: No declaration for attribute lang of element html&gt;, #&lt;Nokogiri::XML::SyntaxError: No declaration for element head&gt;, #&lt;Nokogiri::XML::SyntaxError: No declaration for attribute profile of element head [repeat for every tag in the document.] ] </code></pre> <p>So I'm assuming that's not the right approach. I can't seem to locate any good examples -- can anyone suggest what I'm doing wrong?</p> <p>I'm running ruby 1.8.6 on Mac OSX 10.5.8. Nokogiri tells me:</p> <pre><code>nokogiri: 1.3.3 warnings: [] libxml: compiled: 2.6.23 loaded: 2.6.23 binding: extension </code></pre> http://stackoverflow.com/questions/1287952/how-do-i-validate-xhtml-with-nokogiri/1289422#1289422 2 Answer by Pesto for How do I validate XHTML with nokogiri? Pesto http://stackoverflow.com/users/23921 2009-08-17T17:54:01Z 2009-08-17T17:54:01Z <p>It's not just you. What you're doing is supposed to be the right way to do it, but I've never had any luck with it. As far as I can tell, there's some disconnect somewhere between Nokogiri and libxml which causes it to not load <code>SYSTEM</code> DTDs, or to recognize <code>PUBLIC</code> DTDs. It <em>will</em> work if you define the DTD within the XML file, but good luck doing that with the XHTML DTDs.</p> <p>The best thing I can recommend is to use the <a href="http://www.w3.org/TR/xhtml1-schema/#schemas" rel="nofollow">schemas for XHTML</a> instead:</p> <pre><code>require 'nokogiri' require 'open-uri' doc = Nokogiri::XML(open('http://www.w3.org')) xsd = Nokogiri::XML::Schema(open('http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd')) #this is a true/false validation xsd.valid?(doc) # =&gt; true #this gives a listing of errors xsd.validate(doc) # =&gt; [] </code></pre>