Markdent::Event::AutoLink - An event for auto-links


Markdent documentation Contained in the Markdent distribution.

Index


Code Index:

NAME

Top

Markdent::Event::AutoLink - An event for auto-links

VERSION

Top

version 0.17

DESCRIPTION

Top

This class represents an auto-link, like <http://example.com>.

ATTRIBUTES

Top

This class has the following attributes:

uri

The uri in the auto-link.

ROLES

Top

This class does the Markdent::Role::Event role.

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::Event::AutoLink;
BEGIN {
  $Markdent::Event::AutoLink::VERSION = '0.17';
}

use strict;
use warnings;

use Markdent::Types qw( Str Bool );

use namespace::autoclean;
use Moose;
use MooseX::StrictConstructor;

has uri => (
    is       => 'ro',
    isa      => Str,
    required => 1,
);

with 'Markdent::Role::Event';

__PACKAGE__->meta()->make_immutable();

1;

# ABSTRACT: An event for auto-links




__END__