wp-cli / php-cli-tools

A collection of tools to help with PHP command line utilities
MIT License
672 stars 118 forks source link

Tags colorize support #100

Closed nazar-pc closed 7 years ago

nazar-pc commented 8 years ago

This is implementation of what I was talking in #96

Essentially, allows using HTML-like formatting:

<g>Green text <4>still green, but blue background</4> just green again</g>

in addition to less convenient (current syntax)

%gGreen text %4still green, but blue background%n%g just green again

It is much easier to read, write and maintain. Please, refer to #96 for discussion. Nothing is removed and/or deprecated, unless you're using <g> and similar tags for whatever reason in CLI output, it shouldn't introduce any backward compatibility problems.

Fixes #96.