Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
3k views

A library to convert ANSI escapes (terminal formatting/color codes) to HTML

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 ...
1
vote
1answer
76 views

Coloring compiler diagnostics with SCons

I am currently using the colorama package to color messages generated by my build scripts. I have also used scolorizer, which replaces the build commands with custom, colored messages using ...
1
vote
2answers
164 views

Can one highlight tab characters in the terminal?

Using terminal sequences, I can colour text in a terminal emulator: $ echo -e '\e[37;41m--this is white on red--\e[0m' And this works. The following prints a red rectangle, i.e. space characters ...
1
vote
2answers
1k views

Converting ANSI escape sequences to HTML using PHP

This is a similar question to this one. I would like to convert ANSI escape sequences, especially for color, into HTML. However, I would like to accomplish this using PHP. Are there any libraries ...