NAME JSON::Color - Encode to colored JSON VERSION This document describes version 0.06 of JSON::Color (from Perl distribution JSON-Color), released on 2014-06-30. SYNOPSIS use JSON::Color qw(encode_json); say encode_json([1, "two", {three => 4}]); DESCRIPTION This module generates JSON, colorized with ANSI escape sequences. To change the color, see the %theme in the source code. In theory you can also modify it to colorize using HTML. FUNCTIONS encode_json($data, \%opts) => STR Encode to JSON. Will die on error (e.g. when encountering non-encodeable data like Regexp or file handle). Known options: * pretty => BOOL (default: 0) Pretty-print. * linum => BOOL (default: 0) Show line number. FAQ What about loading? Use JSON. SEE ALSO To colorize with HTML, you can try Syntax::Highlight::JSON. Syntax::SourceHighlight can also colorize JSON/JavaScript to HTML or ANSI escape. It requires the GNU Source-highlight library. HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. AUTHOR Steven Haryanto COPYRIGHT AND LICENSE This software is copyright (c) 2014 by Steven Haryanto. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.