File Coverage

blib/lib/CPAN/Changes/Markdown/Filter/Rule/NumericsToCode.pm
Criterion Covered Total %
statement 29 29 100.0
branch 4 4 100.0
condition n/a
subroutine 7 7 100.0
pod 1 1 100.0
total 41 41 100.0


line stmt bran cond sub pod time code
1 2     2   449 use 5.006; # our
  2         4  
2 2     2   6 use strict;
  2         2  
  2         39  
3 2     2   6 use warnings;
  2         3  
  2         157  
4              
5             package CPAN::Changes::Markdown::Filter::Rule::NumericsToCode;
6              
7             # ABSTRACT: Quote things that look like numbers as code entries.
8              
9             our $VERSION = '1.000002';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 2     2   425 use Moo qw( with has );
  2         9444  
  2         13  
14 2     2   1588 use CPAN::Changes::Markdown::Filter::NodeUtil qw( mk_node_plaintext mk_node_delimitedtext );
  2         2  
  2         11  
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32              
33              
34              
35              
36              
37             with 'CPAN::Changes::Markdown::Role::Filter::Rule::PlainText';
38              
39             sub _inject_code_delim {
40 2     2   5 my ( $self, $out, $before, $code, $after ) = @_;
41 2         4 push @{$out}, mk_node_plaintext($before);
  2         5  
42 2         23 push @{$out}, mk_node_delimitedtext( q{`}, $code, q{`} );
  2         6  
43 2         818 push @{$out}, $self->filter_plaintext( mk_node_plaintext($after) );
  2         6  
44 2         3 return @{$out};
  2         7  
45             }
46              
47             # _Pulp__5010_qr_m_propagate_properly
48             ## no critic (Compatibility::PerlMinimumVersionAndWhy)
49             my $re_contains_number = qr/ \d /msx;
50             my $re_numeric = qr/ (\A|\A.*?\s) ( [\d._]+ ) (\z|\s.*\z)/msx;
51             ## use critic
52              
53              
54              
55              
56              
57             sub filter_plaintext {
58 8     8 1 29 my ( $self, $input ) = @_;
59 8 100       37 if ( $input->content !~ $re_contains_number ) {
60 3         5 return $input;
61             }
62 5 100       31 if ( $input->content =~ $re_numeric ) {
63 2         5 return $self->_inject_code_delim( [], $1, $2, $3 );
64             }
65 3         6 return $input;
66             }
67              
68             1;
69              
70             __END__