.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Text::Markup::Multimarkdown 3pm" .TH Text::Markup::Multimarkdown 3pm 2024-03-03 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH Name .IX Header "Name" Text::Markup::Multimarkdown \- MultiMarkdown parser for Text::Markup .SH Synopsis .IX Header "Synopsis" .Vb 5 \& my $html = Text::Markup\->new\->parse(file => \*(AqREADME.mmd\*(Aq); \& my $raw = Text::Markup\->new\->parse( \& file => \*(AqREADME.mmd\*(Aq, \& options => [ raw => 1 ], \& ); .Ve .SH Description .IX Header "Description" This is the MultiMarkdown parser for Text::Markup. It reads in the file (relying on a BOM ), hands it off to Text::MultiMarkdown for parsing, and then returns the generated HTML as an encoded UTF\-8 string with an \f(CW\*(C`http\-equiv="Content\-Type"\*(C'\fR element identifying the encoding as UTF\-8. .PP It recognizes files with the following extensions as MultiMarkdown: .IP \fI.mmd\fR 4 .IX Item ".mmd" .PD 0 .IP \fI.mmkd\fR 4 .IX Item ".mmkd" .IP \fI.mmkdn\fR 4 .IX Item ".mmkdn" .IP \fI.mmdown\fR 4 .IX Item ".mmdown" .IP \fI.multimarkdown\fR 4 .IX Item ".multimarkdown" .PD .PP To change it the files it recognizes, load this module directly and pass a regular expression matching the desired extension(s), like so: .PP .Vb 1 \& use Text::Markup::Multimarkdown qr{mmm+}; .Ve .PP Normally this module returns the output wrapped in a minimal HTML document skeleton. If you would like the raw output without the skeleton, you can pass the \f(CW\*(C`raw\*(C'\fR option to the format options argument to \f(CW\*(C`parse\*(C'\fR. .PP In addition, Text::Markup::Mediawiki supports all of the Text::MultiMarkdown options, including: .ie n .IP """use_metadata""" 4 .el .IP \f(CWuse_metadata\fR 4 .IX Item "use_metadata" .PD 0 .ie n .IP """strip_metadata""" 4 .el .IP \f(CWstrip_metadata\fR 4 .IX Item "strip_metadata" .ie n .IP """empty_element_suffix""" 4 .el .IP \f(CWempty_element_suffix\fR 4 .IX Item "empty_element_suffix" .ie n .IP """img_ids""" 4 .el .IP \f(CWimg_ids\fR 4 .IX Item "img_ids" .ie n .IP """heading_ids""" 4 .el .IP \f(CWheading_ids\fR 4 .IX Item "heading_ids" .ie n .IP """bibliography_title""" 4 .el .IP \f(CWbibliography_title\fR 4 .IX Item "bibliography_title" .ie n .IP """tab_width""" 4 .el .IP \f(CWtab_width\fR 4 .IX Item "tab_width" .ie n .IP """disable_tables""" 4 .el .IP \f(CWdisable_tables\fR 4 .IX Item "disable_tables" .ie n .IP """disable_footnotes""" 4 .el .IP \f(CWdisable_footnotes\fR 4 .IX Item "disable_footnotes" .ie n .IP """disable_bibliography""" 4 .el .IP \f(CWdisable_bibliography\fR 4 .IX Item "disable_bibliography" .ie n .IP """disable_definition_lists""" 4 .el .IP \f(CWdisable_definition_lists\fR 4 .IX Item "disable_definition_lists" .PD .SH Author .IX Header "Author" David E. Wheeler .SH "Copyright and License" .IX Header "Copyright and License" Copyright (c) 2011\-2024 David E. Wheeler. Some Rights Reserved. .PP This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.