Convert syntax highlighted code to HTML in Emacs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:48:55Z http://stackoverflow.com/feeds/question/946858 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/946858/convert-syntax-highlighted-code-to-html-in-emacs 4 Convert syntax highlighted code to HTML in Emacs flitzwald 2009-06-03T20:01:10Z 2009-06-04T09:23:24Z <p>In TextMate there is a feature called "Create HTML from Document", which converts displayed code including syntax coloring to HTML/CSS for easy online publishing. I wonder if there is such a feature hidden in Emacs or maybe an extension that I could install to do that.</p> http://stackoverflow.com/questions/946858/convert-syntax-highlighted-code-to-html-in-emacs/946901#946901 12 Answer by sgm for Convert syntax highlighted code to HTML in Emacs sgm 2009-06-03T20:06:51Z 2009-06-03T20:06:51Z <p><a href="http://www.emacswiki.org/emacs/Htmlize" rel="nofollow">Htmlize</a>.</p> <p>Here, I used <code>htmlize-region</code> to Htmlize a section of the GNU Emacs Welcome screen:</p> <pre> &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"&gt; &lt;!-- Created by htmlize-1.34 in css mode. --&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;*GNU Emacs*&lt;/title&gt; &lt;style type="text/css"&gt; &lt;!-- body { color: #000000; background-color: #ffffff; } .ATTRLIST { } .ATTRLIST-1 { /* (:foreground "darkblue") */ color: #00008b; } .ATTRLIST-2 { /* (:slant oblique) */ font-style: italic; } .ATTRLIST-3 { /* (:foreground "red") */ color: #ff0000; } .default { /* default */ color: #000000; background-color: #ffffff; } .link { /* link */ color: #0000ff; text-decoration: underline; } .variable-pitch { } a { color: inherit; background-color: inherit; font: inherit; text-decoration: inherit; } a:hover { text-decoration: underline; } --&gt; &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;pre&gt; &lt;span class="ATTRLIST-3"&gt;&lt;span class="variable-pitch"&gt;Welcome to &lt;/span&gt;&lt;/span&gt;&lt;span class="ATTRLIST"&gt;&lt;span class="link"&gt;GNU Emacs&lt;/span&gt;&lt;/span&gt;&lt;span class="ATTRLIST-3"&gt;&lt;span class="variable-pitch"&gt;, one component of the &lt;/span&gt;&lt;/span&gt;&lt;span class="ATTRLIST"&gt;&lt;span class="link"&gt;GNU/Linux&lt;/span&gt;&lt;/span&gt;&lt;span class="ATTRLIST-3"&gt;&lt;span class="variable-pitch"&gt; operating system. &lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt;To quit a partially entered command, type &lt;/span&gt;&lt;span class="default"&gt;Control-g&lt;/span&gt;&lt;span class="variable-pitch"&gt;. &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Emacs Tutorial&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; Learn basic keystroke commands &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Emacs Guided Tour&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; Overview of Emacs features &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;View Emacs Manual&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; View the Emacs manual using Info &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Absence of Warranty&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; GNU Emacs comes with &lt;/span&gt;&lt;span class="ATTRLIST-2"&gt;&lt;span class="variable-pitch"&gt;ABSOLUTELY NO WARRANTY &lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Copying Conditions&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; Conditions for redistributing and changing Emacs &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Ordering Manuals&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; Purchasing printed copies of manuals&lt;/span&gt; &lt;span class="variable-pitch"&gt; To start... &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Open a File&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Open Home Directory&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; &lt;/span&gt;&lt;span class="variable-pitch"&gt;&lt;span class="link"&gt;Customize Startup&lt;/span&gt;&lt;/span&gt;&lt;span class="variable-pitch"&gt; &lt;/span&gt;&lt;span class="ATTRLIST-1"&gt;&lt;span class="variable-pitch"&gt; This is GNU Emacs 22.3.1 (x86_64-pc-linux-gnu, GTK+ Version 2.14.7) of 2009-03-31 on nautilus, modified by Debian&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt; &lt;/body&gt; &lt;/html&gt; </pre>