http://qs1969.pair.com?node_id=970890


in reply to Re^3: Make a Markup Method in Perl?
in thread Make a Markup Method in Perl?

I said in my original post that it will be outputted into an RTF file (.rtf). So Term::ANSIColor wouldn't work. Even if I was using a terminal, not many useful features are supported in the Windows DOS (which I'm using).
--perl.j

Replies are listed 'Best First'.
Re^5: Make a Markup Method in Perl?
by elTriberium (Friar) on May 16, 2012 at 19:01 UTC

    If you want to write some formatted output to an RTF file then you have 2 options:

    • Learn about the RTF file format and write a method which transforms your original text into this format
    • Use an existing module which already does that. Searching for "rtf" on CPAN returns many results, so going through these results would be a good first step

    Maybe I also misunderstood your question, but to me it sounds like that's all you want