NAME

Markdown::Parser::StrikeThrough - Markdown StrikeThrough Element

SYNOPSIS

my $o = Markdown::Parser::StrikeThrough->new;
# or
$doc->add_element( $o->create_subscript( @_ ) );

VERSION

v0.3.0

DESCRIPTION

This class represents a strike-through formatting. It is used by Markdown::Parser and inherits from Markdown::Parser::Element

For example:

~~This whole sentence is wrong~~

METHODS

as_markdown

Returns a string representation of the strike-through formatted in markdown.

It returns a plain string.

as_pod

Returns a string representation of the strike-through formatted in pod.

It returns a plain string.

as_string

Returns an html representation of the strike-through formatting.

It returns a plain string.

SEE ALSO

Pandoc manual

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.