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::Handler::HTMLStream::Fragment - Turns Markdent events into an HTML fragment

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 class takes an event stream and turns it into an HTML document, without a doctype, "<html>",
       "<head>" or "<body>" tags.

Methods

       This role provides the following methods:

   Markdent::Handler::HTMLStream::Document->new(...)
       This method creates a new handler. It accepts the following parameters:

       •   output => $fh

           The file handle or object to which HTML output will be streamed. If you want to capture the output in
           a string, you can open a filehandle to a string:

             my $buffer = q{};
             open my $fh, '>', \$buffer;

           If  you  pass a file handle (or IO::Handle object), then all calls to print() will be checked, and an
           error will be thrown.

           You can pass an object of any other class, it must  implement  its  own  print()  method,  and  error
           handling is left up to this method.

Name

       Markdent::Handler::HTMLStream::Fragment - Turns Markdent events into an HTML fragment

Roles

       This     class     does     the    Markdent::Role::HTMLStream,    Markdent::Role::EventsAsMethods,    and
       Markdent::Role::Handler roles.

Source

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

Version

       version 0.40

See Also