NAME
Markdown::Parser::Paragraph - Markdown Paragraph Element
SYNOPSIS
my $o = Markdown::Parser::Paragraph->new;
# or
$doc->add_element( $o->create_paragraph( @_ ) );
VERSION
v0.3.0
DESCRIPTION
This class represents a paragraph. It is used by Markdown::Parser and inherits from Markdown::Parser::Element
METHODS
as_markdown
Returns a string representation of the paragraph formatted in markdown.
It returns a plain string.
as_pod
Returns a string representation of the paragraph formatted in pod.
It returns a plain string.
as_string
Returns an html representation of the paragraph.
It returns a plain string.
SEE ALSO
Markdown original author reference on emphasis: https://daringfireball.net/projects/markdown/syntax#p
AUTHOR
Jacques Deguest <jack@deguest.jp>
COPYRIGHT & LICENSE
Copyright (c) 2020 DEGUEST Pte. Ltd.
You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.