File: SpanParser.pm

package info (click to toggle)
libmarkdent-perl 0.40-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,372 kB
  • sloc: perl: 5,225; sh: 24; makefile: 13
file content (11 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
package Example::Dialect::SpanParser;

use strict;
use warnings;
use namespace::autoclean;

use Moose::Role;

with 'Markdent::Role::Dialect::SpanParser';

1;