Authoring HTML5 in Emacs? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:45:19Z http://stackoverflow.com/feeds/question/1082474 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1082474/authoring-html5-in-emacs 8 Authoring HTML5 in Emacs? Ryan 2009-07-04T15:55:05Z 2009-07-06T11:08:31Z <p>What's the best solution for authoring HTML5 in Emacs? Is there a mode that will do conformance checking?</p> http://stackoverflow.com/questions/1082474/authoring-html5-in-emacs/1082904#1082904 6 Answer by Knut Haugen for Authoring HTML5 in Emacs? Knut Haugen 2009-07-04T20:16:51Z 2009-07-04T20:57:36Z <p>My best suggestion is to use <a href="http://www.thaiopensource.com/nxml-mode/" rel="nofollow" title="nxml-mode">nxml-mode</a> (available as packages in several linux distributions if you're on that platform) and load the html5 RelaxNG compact format specifications from <a href="http://syntax.whattf.org/relaxng/" rel="nofollow">HTML5 specification page</a> (or any other source if you have one). </p> <p>Nxml-mode validates xml files on the fly according to relaxNG specifications and give you nice customization features and handy functions for writing documents faster like inserting end-tags and such. Written by James Clark, so you now the author knows his XML. </p> <p>If you load it like a system package you can probably just add it to your <code>auto-mode-alist</code> and be good to go. I have just set the following two variables for auto-completion and more docs is available at the first link.</p> <pre><code>(nxml-bind-meta-tab-to-complete-flag t) (nxml-slash-auto-complete-flag t) </code></pre> <p>When it is loaded, just load the file you want and specify the location of the schema for html5, save its location through the menu and you should be on your way. There are also more links to documentation on nxml-mode in the link I provided. </p> http://stackoverflow.com/questions/1082474/authoring-html5-in-emacs/1083226#1083226 3 Answer by donbot for Authoring HTML5 in Emacs? donbot 2009-07-05T00:16:48Z 2009-07-05T15:03:15Z <p>I've just seen this project, which apparently takes care of the necessary work to teach nxml-mode about HTML5:</p> <p><a href="http://github.com/hober/html5-el/tree/master" rel="nofollow">http://github.com/hober/html5-el/tree/master</a></p>