DOKK / manpages / debian 12 / libcommonmark-perl / CommonMark::Parser.3pm.en
CommonMark::Parser(3pm) User Contributed Perl Documentation CommonMark::Parser(3pm)

CommonMark::Parser - Push parser interface

    my $parser = CommonMark::Parser->new;
    $parser->feed($string);
    $parser->feed($another_string);
    my $doc = $parser->finish;

"CommonMark::Parser" provides a push parser interface to parse CommonMark documents.

   my $parser = CommonMark::Parser->new( [$options] );

Creates a parser object. $options is a bit field containing the parser options. It defaults to zero ("OPT_DEFAULT"). See "Parser options" in CommonMark.

    $parser->feed($string);

Feeds a part of the input Markdown to the parser.

    my $doc = $parser->finish;

Parses a CommonMark document from the strings added with "feed" returning the CommonMark::Node of the document root.

This software is copyright (C) by Nick Wellnhofer.

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

2022-10-20 perl v5.36.0