.\" -*- 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::Markdown 3pm" .TH Text::Markup::Markdown 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::Markdown \- Markdown parser for Text::Markup .SH Synopsis .IX Header "Synopsis" .Vb 5 \& my $html = Text::Markup\->new\->parse(file => \*(AqREADME.md\*(Aq); \& my $raw = Text::Markup\->new\->parse( \& file => \*(AqREADME.md\*(Aq, \& options => [ raw => 1 ], \& ); .Ve .SH Description .IX Header "Description" This is the Markdown parser for Text::Markup. It reads in the file (relying on a BOM ), hands it off to Text::Markdown 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 Markdown: .IP \fI.md\fR 4 .IX Item ".md" .PD 0 .IP \fI.mkd\fR 4 .IX Item ".mkd" .IP \fI.mkdn\fR 4 .IX Item ".mkdn" .IP \fI.mdown\fR 4 .IX Item ".mdown" .IP \fI.markdown\fR 4 .IX Item ".markdown" .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::Markdown qr{markd?}; .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 \f(CW\*(C`parse\*(C'\fR. .PP In addition, Text::Markup::Markdown supports all of the Text::Markdown options, including: .ie n .IP """empty_element_suffix""" 4 .el .IP \f(CWempty_element_suffix\fR 4 .IX Item "empty_element_suffix" .PD 0 .ie n .IP """tab_width""" 4 .el .IP \f(CWtab_width\fR 4 .IX Item "tab_width" .ie n .IP """trust_list_start_value""" 4 .el .IP \f(CWtrust_list_start_value\fR 4 .IX Item "trust_list_start_value" .PD .SH "See Also" .IX Header "See Also" National Funk Congress Deadlocked On Get Up/Get Down Issue . Mark\fIup\fR or Mark\fIdown\fR? .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.