NAME
    JSON::Encode::TableData - Encode table data to JSON (put each row on its
    own line)

VERSION
    This document describes version 0.002 of JSON::Encode::TableData (from
    Perl distribution JSON-Encode-TableData), released on 2020-10-22.

SYNOPSIS
     use JSON::Encode::TableData qw(encode_json); # not exported automatically
     say encode_json([200, "OK", [{rownum=>1, a=>"one"}, {rownum=>2, a=>"two"}, {rownum=>3, a=>"three"}]]);

    Sample output:

     [200,"OK",[
        {rownum=>1, a=>"one"},
        {rownum=>2, a=>"two"},
        {rownum=>3, a=>"three"},
     ]

DESCRIPTION
    This is a JSON encoder specifically for *table data* (consult td from
    App::td to read more about table data). Its goal is to display each
    table row on a separate line for ease of grepping.

FUNCTIONS
  encode_json
HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/JSON-Encode-TableData>.

SOURCE
    Source repository is at
    <https://github.com/perlancar/perl-JSON-Encode-TableData>.

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=JSON-Encode-TableData
    >

    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.

SEE ALSO
    JSON::MaybeXS and a plethora of other JSON encoders.

    td from App::td to read more about *table data*.

AUTHOR
    perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2020 by perlancar@cpan.org.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.