File: caps

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 (8 lines) | stat: -rwxr-xr-x 117 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/usr/bin/env perl

use Pandoc::Filter;

pandoc_filter Str => sub {
    $_->content(uc($_->content));
    return
};