NAME

CPAN::Changes::Markdown::Filter::Node::DelimitedText - A region of text that is marked up

VERSION

version 1.000002

SYNOPSIS

use CPAN::Changes::Markdown::Filter::NodeUtil qw( :all );

my $delimitedtext = mk_node_delimitedtext(q[`], "The text here", q[`]);

print $delimitedtext->to_s() # `The text here`

print $delimitedtext->content # The text here

METHODS

create

A short-hand for new

$class->create($a,$b,$c) == $class->new(
    before_text => $a,
    content     => $b,
    after_text  => $c,
);

to_s

ATTRIBUTES

content

required

before_text

required

after_text

required

AUTHOR

Kent Fredric <kentnl@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.