in reply to Re^2: Handling ANSI Escape Sequences for Printing to Curses
in thread Handling ANSI Escape Sequences for Printing to Curses
#!/usr/bin/perl use strict; use warnings; use Term::ANSIColor::Markup; my $text = qq{ <yellow>word</yellow> }; print Term::ANSIColor::Markup->colorize($text);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Handling ANSI Escape Sequences for Printing to Curses
by atancasis (Sexton) on Aug 01, 2010 at 04:44 UTC |