line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=head1 NAME |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
Template::Provider::Markdown::Pandoc - expand Markdown templates to HTML |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 SYNOPSIS |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use Template; |
8
|
|
|
|
|
|
|
use Template::Provider::Pandoc; # Use this instead. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 DESCRIPTION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Template::Provider::Markdown::Pandoc was an extension to the Template Toolkit |
13
|
|
|
|
|
|
|
which automatically converted Markdown files into HTML before they are |
14
|
|
|
|
|
|
|
processed by TT. |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
It has now been obsoleted by the newer Template::Provider::Pandoc. Please |
17
|
|
|
|
|
|
|
ise that instead. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
package Template::Provider::Markdown::Pandoc; |
22
|
|
|
|
|
|
|
|
23
|
2
|
|
|
2
|
|
49526
|
use strict; |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
75
|
|
24
|
2
|
|
|
2
|
|
19
|
use warnings; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
73
|
|
25
|
2
|
|
|
2
|
|
55
|
use 5.010; |
|
2
|
|
|
|
|
15
|
|
26
|
|
|
|
|
|
|
|
27
|
2
|
|
|
2
|
|
1119
|
use parent 'Template::Provider'; |
|
2
|
|
|
|
|
683
|
|
|
2
|
|
|
|
|
14
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
our $VERSION = '999.999.999'; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 AUTHOR |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Dave Cross Edave@perlhacks.comE |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 COPYRIGHT |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Copyright (c) 2017 Magnum Solutions Ltd. All rights reserved. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or |
42
|
|
|
|
|
|
|
modify it under the same terms as Perl itself. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SEE ALSO |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
L, L, L, |
47
|
|
|
|
|
|
|
L. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=cut |