I'm looking for a code library that converts ANSI escape sequences into HTML color, via plain tags or CSS. For example, something that would convert this:

ESC[00mESC[01;34mbinESC[00m
ESC[01;34mcodeESC[00m
ESC[01;31mdropbox-lnx.x86-0.6.404.tar.gzESC[00m
ESC[00mfooESC[00m

Into this:

<span style="color:blue">bin</span>
<span style="color:blue">code</span>
<span style="color:red">dropbox-lnx.x86-0.6.404.tar.gz</span>
foo

Converting breaks into <br/> isn't necessary, it's just the escape codes that I don't know. I could hack it together myself, but I'd probably miss something important like underlines or mess up how background colors work. I'd rather just sit on top of someone else's code.

Does such a tool (command line linux) or library (perl, python, or ruby preferably) exist?

link|improve this question

1  
Anything in Python? – Sorin Sbarnea Sep 10 '09 at 15:45
1  
Python version available here: code.activestate.com/recipes/… – Janus Troelsen May 15 '11 at 11:37
feedback

2 Answers

up vote 9 down vote accepted

There seems to be an HTML::FromANSI Perl module.

link|improve this answer
Thank you Pistos. – Myrddin Emrys Nov 4 '08 at 0:26
this module installs ansi2html that you can pipe input. ls --color | ansi2html -p > my_web_page.html ls --color | ansi2html > my_snpipet_code-no_header-footer.html BUT I prefer the default output from ansi2html.sh from pixelbeat – Pablo Marin-Garcia Apr 21 '11 at 15:57
feedback

aha is a C-language program, available at http://ziz.delphigl.com/tool_aha.php, that takes an input with terminal colors by pipe or file and puts a (w3c conform) HTML-File in stdout. Example:

ls --color=always | aha > ls-output.htm

or

ls --color=always | aha --black > ls-output.htm

for a terminal-like look with black background.

Compile it by "make" and put it where ever you want.

It would be great to get Feedback. ;-)

link|improve this answer
the link is broken – IcanDivideBy0 Jan 10 at 10:08
IcanDivideBy0 missed something: the "german link" in Alexander Matthes' post remains valid. The orig post has an erroneous ' ' before "ziz" in it; use ziz.delphigl.com/tool_aha.php Further, Alexander's link points to: - source at ziz.delphigl.com/data/aha-src-0.4.4.tar.gz, and - other debian packages at http: //packages.debian.org/search?keywords=aha (remove the space (' ') added after ':', as I don't have priveleges to include more than 2 links per post.) – Nate Jan 19 at 16:06
@IcanDivideBy0: Fixed link. – smokris Mar 5 at 4:44
feedback

Your Answer

 
or
required, but never shown

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