comparison lib/CPT/Writer/HTML.pm @ 1:97ef96676b48 draft

planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author cpt
date Mon, 05 Jun 2023 02:51:26 +0000
parents
children
comparison
equal deleted inserted replaced
0:b18e8268bf4e 1:97ef96676b48
1 package CPT::Writer::HTML;
2 use Moose;
3 with 'CPT::Writer';
4
5 sub process {
6 my ($self) = @_;
7 $self->processed_data( $self->data );
8 $self->processing_complete(1);
9 }
10
11 sub suffix {
12 return 'html';
13 }
14 no Moose;
15 1;
16
17 __END__
18
19 =pod
20
21 =encoding UTF-8
22
23 =head1 NAME
24
25 CPT::Writer::HTML
26
27 =head1 VERSION
28
29 version 1.99.4
30
31 =head1 AUTHOR
32
33 Eric Rasche <rasche.eric@yandex.ru>
34
35 =head1 COPYRIGHT AND LICENSE
36
37 This software is Copyright (c) 2014 by Eric Rasche.
38
39 This is free software, licensed under:
40
41 The GNU General Public License, Version 3, June 2007
42
43 =cut