line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Khonsu::Text::H2; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
34
|
use parent 'Khonsu::Text'; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
28
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
sub BUILD { |
6
|
4
|
|
|
4
|
0
|
22
|
my ($self, %params) = @_; |
7
|
4
|
|
50
|
|
|
60
|
$self->font->size($params{font_size} || 40); |
8
|
4
|
|
50
|
|
|
60
|
$self->font->line_height($params{line_height} || 30); |
9
|
|
|
|
|
|
|
} |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub add { |
12
|
59
|
|
|
59
|
0
|
254
|
my ($self, $file, %attributes) = @_; |
13
|
59
|
|
33
|
|
|
381
|
$attributes{h} ||= $self->font->size; |
14
|
59
|
50
|
|
|
|
342
|
$file->toc->outline($file, 'h2', %attributes) if $attributes{toc}; |
15
|
59
|
|
|
|
|
335
|
return $self->SUPER::add($file, %attributes); |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |