line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Text::Livedoor::Wiki::Plugin::Inline::Break; |
2
|
|
|
|
|
|
|
|
3
|
10
|
|
|
10
|
|
55
|
use warnings; |
|
10
|
|
|
|
|
1202
|
|
|
10
|
|
|
|
|
1515
|
|
4
|
10
|
|
|
10
|
|
45
|
use strict; |
|
10
|
|
|
|
|
1537
|
|
|
10
|
|
|
|
|
344
|
|
5
|
10
|
|
|
10
|
|
51
|
use base qw(Text::Livedoor::Wiki::Plugin::Inline); |
|
10
|
|
|
|
|
15
|
|
|
10
|
|
|
|
|
510
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
__PACKAGE__->regex(q{\~\~}); |
8
|
|
|
|
|
|
|
__PACKAGE__->n_args(0); |
9
|
|
|
|
|
|
|
__PACKAGE__->dependency( 'Text::Livedoor::Wiki::Plugin::Inline::BreakClearAll' ); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub process { |
12
|
3
|
|
|
3
|
1
|
11
|
my ( $class , $inline , $line ) = @_; |
13
|
3
|
|
|
|
|
11
|
$line = $inline->parse($line); |
14
|
3
|
|
|
|
|
13
|
return " "; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Text::Livedoor::Wiki::Plugin::Inline::Break - Inline Break Plugin |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
break text line. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SYNOPSIS |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
I have a ~~ dream |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 FUNCTION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 process |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
polocky |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |