NAME
Markdown::Parser::Bold - Markdown Strong Element
SYNOPSIS
my $o = Markdown::Parser::Bold->new;
# or
$doc->add_element( $o->create_bold( @_ ) );
VERSION
v0.3.0
DESCRIPTION
This class represents a bold formatting. It is used by Markdown::Parser and inherits from Markdown::Parser::Element
METHODS
as_markdown
Returns a string representation of the bold formatted in markdown.
It returns a plain string.
as_pod
Returns a string representation of the bold formatted in pod.
It returns a plain string.
as_string
Returns an html representation of the bold formatting.
It returns a plain string.
type
Sets or gets the markdown type used to declare the bold formatting. The value is stored as a Module::Generic::Scalar
Valid type used to mark some text as bold are **
or __
Returns the current value.
SEE ALSO
Markdown original author reference on emphasis: https://daringfireball.net/projects/markdown/syntax#em
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.