vote up 0 vote down star

I'm looking for an open source, cross platform (Windows & Linux at least) command line tool to take some code (C++, but multiple languages would be sweet), and spit out valid a XHTML representation of that code, with syntax highlighting included.

Ideally the XHTML should just wrap the code with <span> and <div> tags with different classes so I can supply the CSS code and change the colouration, but that's an optional extra.

Does anyone know of such an application?

flag

7 Answers

vote up 5 vote down check

I can recommend Pygments. It's easy to work with and supports a lot of languages. It does what you want, i.e., it wraps the code in <span> tags:

from pygments import highlight
from pygments.lexers import PythonLexer
from pygments.formatters import HtmlFormatter

code = 'print "Hello World"'
print highlight(code, PythonLexer(), HtmlFormatter())

gives

<div class="highlight">
<pre><span class="k">print</span> <span class="s">&quot;Hello World&quot;</span></pre>
</div>

and you can then use one of the supplied style sheets of make your own.

You can also call it via it's pygmentize script. The script can format the output in different ways: HTML, LaTeX, ANSI color terminal output.

link|flag
I ended up using pygments - it's simply brilliant! Thanks a lot for your suggestion. – Thomi May 27 at 7:44
vote up 2 vote down

Vim can save any code it highlights to "colored" HTML (it runs on several platforms). There is GNU hightlight too. And tons of others.

link|flag
can you give an example how to do it in vim ? – Ilya Sep 19 '08 at 8:38
1  
open your file in gvim then <ESC> :syn on :TOhtml the vim screen split, one buffer for the html, one for your original file. Then you save the html rendered file and you're done. – PW Sep 19 '08 at 13:18
vote up 0 vote down

Not sure how helpful this will be, but my team uses doxygen to produce documentation, which happens to provide color syntax highlighting on our code views as well as a side bonus. Never really needed it, but it does it.

link|flag
vote up 3 vote down

There is very good one, driven by XML, fast and opensource: http://sourceforge.net/projects/colorer/

link|flag
Being driven by XML is only a feature in the Java world... :-) – Martin Geisler May 23 at 15:32
vote up 2 vote down

I don't recall if GeSHi has a command-line program but even if it doesn't, it shouldn't be hard to whip one up. It does a great job of taking code and generating pretty, coloured HTML/XHTML, even with line numbers (or every X line numbers, even) and other helpful features.

link|flag
vote up 0 vote down

If you're ok with using ruby, you want coderay.

link|flag
vote up 1 vote down

Enscript looks like what you are asking for :

  1. spit HTML (or PS, or RTF) from ascii files
  2. It includes features for `pretty-printing' (language-sensitive code highlighting) in several programming languages.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.