Macro-Micro
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/Macro/Micro.pm view on Meta::CPAN
#pod
#pod macro_format - this is the format for macros; see the macro_format method
#pod
#pod =cut
my $DEFAULT_MACRO_FORMAT = qr/(?<!\\)([\[<] (\w+) [>\]])/x;
sub new {
my ($class, %arg) = @_;
my $self = bless { } => $class;
$arg{macro_format} = $DEFAULT_MACRO_FORMAT unless $arg{macro_format};
$self->macro_format($arg{macro_format});
return $self;
}
#pod =method macro_format
#pod
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.851 second using v1.00-cache-2.02-grep-82fe00e-cpan-a086c87fca4 )