line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Template::LiquidX::Tidy::Tag::post_url; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
4
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
25
|
|
5
|
1
|
|
|
1
|
|
6
|
use experimental 'signatures'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
100
|
use base 'Template::Liquid::Tag'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
166
|
|
8
|
|
|
|
|
|
|
#sub conditional_tag { } |
9
|
1
|
|
|
1
|
|
4
|
sub import { Template::Liquid::register_tag('post_url') } |
10
|
0
|
|
|
0
|
0
|
|
sub new ($class, $args) { |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
11
|
0
|
|
|
|
|
|
bless $args => $class |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Template::LiquidX::Tidy::Tag::post_url - This is a DUMMY tag to support post_url |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
You cannot use this tag for actual post URL dereferencing! |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
It is only enough to support indentation of Liquid C in Template::LiquidX::Tidy. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=cut |
27
|
|
|
|
|
|
|
|