.\" -*- 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::Bbcode 3pm" .TH Text::Markup::Bbcode 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::Bbcode \- BBcode parser for Text::Markup .SH Synopsis .IX Header "Synopsis" .Vb 5 \& my $html = Text::Markup\->new\->parse(file => \*(Aqfile.bbcode\*(Aq); \& my $raw = Text::Markup\->new\->parse( \& file => \*(Aqfile.bbcode\*(Aq, \& options => [ raw => 1 ], \& ); .Ve .SH Description .IX Header "Description" This is the BBcode 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.bb\fR 4 .IX Item ".bb" .PD 0 .IP \fI.bbcode\fR 4 .IX Item ".bbcode" .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::Bbcode qr{beebee}; .Ve .PP Normally this module returns the output wrapped in a minimal HTML document skeleton. If you would like the raw output with the raw skeleton, you can pass the \f(CW\*(C`raw\*(C'\fR option to \f(CW\*(C`parse\*(C'\fR. .PP In addition Text::Markup::Bbcode supports all of the Parse::BBCode options, including: .ie n .IP """tags""" 4 .el .IP \f(CWtags\fR 4 .IX Item "tags" .PD 0 .ie n .IP """escapes""" 4 .el .IP \f(CWescapes\fR 4 .IX Item "escapes" .ie n .IP """url_finder""" 4 .el .IP \f(CWurl_finder\fR 4 .IX Item "url_finder" .ie n .IP """smileys""" 4 .el .IP \f(CWsmileys\fR 4 .IX Item "smileys" .ie n .IP """linebreaks""" 4 .el .IP \f(CWlinebreaks\fR 4 .IX Item "linebreaks" .ie n .IP """text_processor""" 4 .el .IP \f(CWtext_processor\fR 4 .IX Item "text_processor" .ie n .IP """close_open_tags""" 4 .el .IP \f(CWclose_open_tags\fR 4 .IX Item "close_open_tags" .ie n .IP """strict_attributes""" 4 .el .IP \f(CWstrict_attributes\fR 4 .IX Item "strict_attributes" .ie n .IP """direct_attributes""" 4 .el .IP \f(CWdirect_attributes\fR 4 .IX Item "direct_attributes" .ie n .IP """attribute_quote""" 4 .el .IP \f(CWattribute_quote\fR 4 .IX Item "attribute_quote" .ie n .IP """attribute_parser""" 4 .el .IP \f(CWattribute_parser\fR 4 .IX Item "attribute_parser" .ie n .IP """strip_linebreaks""" 4 .el .IP \f(CWstrip_linebreaks\fR 4 .IX Item "strip_linebreaks" .PD .SH Author .IX Header "Author" Lucas Kanashiro .SH "Copyright and License" .IX Header "Copyright and License" Copyright (c) 2011\-2023 Lucas Kanashiro. Some Rights Reserved. .PP This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.