logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Markdent::Role::Event - Implements behavior shared by all events

Author

       Dave Rolsky <autarch@urth.org>

Bugs

       See Markdent for bug reporting details.

       Bugs may be submitted at <https://github.com/houseabsolute/Markdent/issues>.

       I am also usually active on IRC as 'autarch' on "irc://irc.perl.org".

Description

       This role provides shared behavior for all event classes. It is actually somewhat of a hack, as it is a
       parameterized role that generates methods for each class that consumes it.

Methods

       This role provides the following methods:

   $event->is_start$event->is_end$event->is_inline
       These all returns booleans indicating whether the event is of the specified type.

   $event->event_name
       This returns a name like "start_blockquote", "end_strong", or "text".

   $event->kv_pairs_for_attributes
       This returns a hash representing the data stored in the object's attributes. If an attribute is not
       required and has not been set, it will not be present in the hash.

   $event->debug_dump
       Returns a string representation of the event suitable for debugging output.

Name

       Markdent::Role::Event - Implements behavior shared by all events

Source

       The source code repository for Markdent can be found at <https://github.com/houseabsolute/Markdent>.

Version

       version 0.40

See Also