Name

Text::Markup::Asciidoc - Asciidoc parser for Text::Markup

Synopsis

use Text::Markup;
my $html = Text::Markup->new->parse(file => 'hello.adoc');
my $raw = Text::Markup->new->parse(
    file    => 'hello.adoc',
    options => [raw => 1],
);

Description

This is the Asciidoc parser for Text::Markup. It depends on the asciidoc command-line application. See the installation docs for details, or use the command pip3 install asciidoc.

Text::Markup::Asciidoc recognizes files with the following extensions as Asciidoc:

.asciidoc
.asc
.adoc

Normally this parser returns the output of asciidoc wrapped in a minimal HTML page skeleton. If you would prefer to just get the exact output returned by asciidoc, you can pass in a true value for the raw option.

Author

David E. Wheeler <david@justatheory.com>

Copyright and License

Copyright (c) 2012-2023 David E. Wheeler. Some Rights Reserved.

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