File: pmarkdown.pm

package info (click to toggle)
pmarkdown 1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 772 kB
  • sloc: perl: 4,719; makefile: 6
file content (31 lines) | stat: -rw-r--r-- 563 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package App::pmarkdown;

use strict;
use warnings;

use Markdown::Perl;

our $VERSION = $Markdown::Perl::VERSION; ## no critic (ProhibitComplexVersion RequireConstantVersion)

1;

__END__

=pod

=encoding utf8

=head1 NAME

App::pmarkdown

=head1 SYNOPSIS

This package is only here to reserve the C<App::pmarkdown> name to simplify the
installation of the L<pmarkdown> program.

The documentation for the markdown processor is in the L<pmarkdown> page. It’s
implementation is based on the L<Markdown::Perl> library that can be used
programmatically too.

=cut