Markdent::Role::SpanParser - A role for span parsers


Markdent documentation Contained in the Markdent distribution.

Index


Code Index:

NAME

Top

Markdent::Role::SpanParser - A role for span parsers

VERSION

Top

version 0.17

DESCRIPTION

Top

This role implements behavior shared by all span parsers

REQUIRED METHODS

Top

* $parser->parse_block(\$text)

This method takes a scalar reference to a markdown block and parses it for span-level markup.

ROLES

Top

This role does the Markdent::Role::AnyParser and Markdent::Role::DebugPrinter roles.

BUGS

Top

See Markdent for bug reporting details.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Markdent documentation Contained in the Markdent distribution.

package Markdent::Role::SpanParser;
BEGIN {
  $Markdent::Role::SpanParser::VERSION = '0.17';
}

use strict;
use warnings;

use namespace::autoclean;
use Moose::Role;

with 'Markdent::Role::AnyParser';

requires 'parse_block';

1;

# ABSTRACT: A role for span parsers




__END__