File: comments.pl

package info (click to toggle)
libpandoc-elements-perl 0.38-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 732 kB
  • sloc: perl: 1,630; makefile: 15; sh: 1
file content (41 lines) | stat: -rwxr-xr-x 943 bytes parent folder | download | duplicates (4)
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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env perl
use strict;

=head1 NAME

comments - remove everyting between C<< <!-- BEGIN/END COMMENT --> >>

=head1 DESCRIPTION

Pandoc filter to ignore everything between C<< <!-- BEGIN COMMENT --> >> and
C<< <!-- END COMMENT --> >> The comment lines must appear on lines by
themselves, with blank lines surrounding them.

=cut

use Pandoc::Filter;

my $incomment = 0;

pandoc_filter sub {
    my $e = shift;
    if ( $e->name eq 'RawBlock' and $e->format eq 'html' ) {
        if ( $e->content =~ /^\s*<!--\s*(BEGIN|END)\s+COMMENT\s*-->\s*$/ ) {
            $incomment = $1 eq 'BEGIN';
            return [];
        }
    }
    return $incomment ? [] : undef;
};

=head1 SYNOPSIS

  pandoc --filter comments.pl -o output.html < input.md

=head1 SEE ALSO

This is a port of
L<comments.py|https://github.com/jgm/pandocfilters/blob/master/examples/comments.py>
from Python to Perl with L<Pandoc::Elements> and L<Pandoc::Filter>.

=cut