{
    "content": [
        {
            "type": "text",
            "text": "# PerlIO::via::QuotedPrint (perldoc)\n\n## NAME\n\nPerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings\n\n## SYNOPSIS\n\nuse PerlIO::via::QuotedPrint;\nopen(my $in, '<:via(QuotedPrint)', 'file.qp') or\ndie \"Can't open file.qp for reading: $!\\n\";\nopen(my $out, '>:via(QuotedPrint)', 'file.qp') or\ndie \"Can't open file.qp for writing: $!\\n\";\n\n## DESCRIPTION\n\nThis module implements a PerlIO layer that works on files encoded in the quoted-printable\nformat. It will decode from quoted-printable while reading from a handle, and it will encode as\nquoted-printable while writing to a handle.\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS**\n- **DESCRIPTION**\n- **EXPORTS**\n- **KNOWN BUGS**\n- **FEEDBACK**\n- **SEE ALSO**\n- **ACKNOWLEDGEMENTS**\n- **AVAILABILITY**\n- **INSTALLATION**\n- **AUTHOR**\n- **COPYRIGHT**\n- **LICENCE**\n- **VERSION**\n- **DATE**\n- **HISTORY**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "PerlIO::via::QuotedPrint",
        "section": "",
        "mode": "perldoc",
        "summary": "PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings",
        "synopsis": "use PerlIO::via::QuotedPrint;\nopen(my $in, '<:via(QuotedPrint)', 'file.qp') or\ndie \"Can't open file.qp for reading: $!\\n\";\nopen(my $out, '>:via(QuotedPrint)', 'file.qp') or\ndie \"Can't open file.qp for writing: $!\\n\";",
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 8,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "EXPORTS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "KNOWN BUGS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "FEEDBACK",
                "lines": 20,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "ACKNOWLEDGEMENTS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "AVAILABILITY",
                "lines": 12,
                "subsections": []
            },
            {
                "name": "INSTALLATION",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "AUTHOR",
                "lines": 5,
                "subsections": []
            },
            {
                "name": "COPYRIGHT",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "LICENCE",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "VERSION",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "DATE",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "HISTORY",
                "lines": 2,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "use PerlIO::via::QuotedPrint;\n\nopen(my $in, '<:via(QuotedPrint)', 'file.qp') or\ndie \"Can't open file.qp for reading: $!\\n\";\n\nopen(my $out, '>:via(QuotedPrint)', 'file.qp') or\ndie \"Can't open file.qp for writing: $!\\n\";\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "This module implements a PerlIO layer that works on files encoded in the quoted-printable\nformat. It will decode from quoted-printable while reading from a handle, and it will encode as\nquoted-printable while writing to a handle.\n",
                "subsections": []
            },
            "EXPORTS": {
                "content": "*None*.\n",
                "subsections": []
            },
            "KNOWN BUGS": {
                "content": "*None*.\n",
                "subsections": []
            },
            "FEEDBACK": {
                "content": "Patches, bug reports, suggestions or any other feedback is welcome.\n\nPatches can be sent as GitHub pull requests at\n<https://github.com/steve-m-hay/PerlIO-via-QuotedPrint/pulls>.\n\nBug reports and suggestions can be made on the CPAN Request Tracker at\n<https://rt.cpan.org/Public/Bug/Report.html?Queue=PerlIO-via-QuotedPrint>.\n\nCurrently active requests on the CPAN Request Tracker can be viewed at\n<https://rt.cpan.org/Public/Dist/Display.html?Status=Active;Queue=PerlIO-via-QuotedPrint>.\n\nPlease test this distribution. See CPAN Testers Reports at <https://www.cpantesters.org/> for\ndetails of how to get involved.\n\nPrevious test results on CPAN Testers Reports can be viewed at\n<https://www.cpantesters.org/distro/P/PerlIO-via-QuotedPrint.html>.\n\nPlease rate this distribution on CPAN Ratings at\n<https://cpanratings.perl.org/rate/?distribution=PerlIO-via-QuotedPrint>.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "PerlIO::via, MIME::QuotedPrint.\n",
                "subsections": []
            },
            "ACKNOWLEDGEMENTS": {
                "content": "Based on an example in the standard library module MIME::QuotedPrint in Perl (version 5.8.0).\n",
                "subsections": []
            },
            "AVAILABILITY": {
                "content": "The latest version of this module is available from CPAN (see \"CPAN\" in perlmodlib for details)\nat\n\n<https://metacpan.org/release/PerlIO-via-QuotedPrint> or\n\n<https://www.cpan.org/authors/id/S/SH/SHAY/> or\n\n<https://www.cpan.org/modules/by-module/PerlIO/>.\n\nThe latest source code is available from GitHub at\n<https://github.com/steve-m-hay/PerlIO-via-QuotedPrint>.\n",
                "subsections": []
            },
            "INSTALLATION": {
                "content": "See the INSTALL file.\n",
                "subsections": []
            },
            "AUTHOR": {
                "content": "Elizabeth Mattijsen <liz@dijkmat.nl <mailto:liz@dijkmat.nl>>.\n\nSteve Hay <shay@cpan.org <mailto:shay@cpan.org>> is now maintaining PerlIO::via::QuotedPrint as\nof version 0.08.\n",
                "subsections": []
            },
            "COPYRIGHT": {
                "content": "Copyright (C) 2002-2004, 2012 Elizabeth Mattijsen. All rights reserved.\n\nCopyright (C) 2015, 2020 Steve Hay. All rights reserved.\n",
                "subsections": []
            },
            "LICENCE": {
                "content": "This module is free software; you can redistribute it and/or modify it under the same terms as\nPerl itself, i.e. under the terms of either the GNU General Public License or the Artistic\nLicense, as specified in the LICENCE file.\n",
                "subsections": []
            },
            "VERSION": {
                "content": "Version 0.09\n",
                "subsections": []
            },
            "DATE": {
                "content": "08 Dec 2020\n",
                "subsections": []
            },
            "HISTORY": {
                "content": "See the Changes file.\n",
                "subsections": []
            }
        }
    }
}