The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Liveman::MinillaPod2Markdown – a stub for Minilla that redirects lib/MainModule.md to README.md

SYNOPSIS

        use Liveman::MinillaPod2Markdown;
        
        my $mark = Liveman::MinillaPod2Markdown->new;
        
        $mark->isa("Pod::Markdown")  # -> 1
        
        use File::Slurper qw/write_text/;
        write_text "X.md", "hi!";
        write_text "X.pm", "our \$VERSION = 1.0;";
        
        $mark->parse_from_file("X.pm");
        $mark->{path}  # => X.md
        
        $mark->as_markdown  # => hi!

DESCRIPTION

Add the line markdown_maker = "Liveman::MinillaPod2Markdown" to minil.toml, and Minilla will not create README.md from the pod documentation of the main module, but will take it from the file of the same name next to the *.md extension.

SUBROUTINES

as_markdown ()

Stub.

new ()

Constructor.

parse_from_file ($path)

Stub.

INSTALL

To install this module on your system, follow these steps Lhttps://metacpan.org/pod/App::cpm:

        sudo cpm install -gvv Liveman::MinillaPod2Markdown

AUTHOR

Yaroslav O. Kosmina mailto:dart@cpan.org

LICENSE

GPLv3

COPYRIGHT

The Liveman::MinillaPod2Markdown module is copyright © 2023 Yaroslav O. Kosmina. Rusland. All rights reserved.