Pod::WikiDoc::Parser - precompiled recursive descent parser for Pod::WikiDoc


Pod-WikiDoc documentation  | view source Contained in the Pod-WikiDoc distribution.

Index


NAME

Top

Pod::WikiDoc::Parser -- precompiled recursive descent parser for Pod::WikiDoc

VERSION

Top

This documentation refers to version 0.18.

SYNOPSIS

Top

     use Pod::WikiDoc::Parser;

     my $parser = Pod::WikiDoc::Parser->new();

     my $tree = $parser->WikiDoc( $text );

DESCRIPTION

Top

Pod::WikiDoc::Parser is a precompiled Parse::RecDescent parser for use with Pod::WikiDoc.

A copy of the Parse::RecDescent grammar used is appended to the Pod::WikiDoc::Parser source and this Pod file for reference or reuse by others.

USAGE

Top

This module is a support module for Pod::WikiDoc and is not intended for general use. Given a string containing WikiDoc markup text, the parser produces a data structure representing the parsed content. The data structure returned is an array of references to hashes. Keys in the hash are:

See Pod::WikiDoc for details of the markup.

SEE ALSO

Top

There are numerous Perl wikitext parsers, formatters or translators, some of which were instructive in designing this parser. All the ones I could find are included below for reference for those interested in the topic:

AUTHOR

Top

David A. Golden (DAGOLDEN)

COPYRIGHT AND LICENSE

Top


Pod-WikiDoc documentation  | view source Contained in the Pod-WikiDoc distribution.