NAME

CommonMark::Parser - Push parser interface

SYNOPSIS

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

DESCRIPTION

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

new

   my $parser = CommonMark::Parser->new;

Creates a parser object.

feed

    $parser->feed($string);

Feeds a part of the input Markdown to the parser.

finish

    my $doc = $parser->finish;

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

COPYRIGHT

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.