line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Khonsu::Text::H5; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
35
|
use parent 'Khonsu::Text'; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
25
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
sub BUILD { |
6
|
4
|
|
|
4
|
0
|
31
|
my ($self, %params) = @_; |
7
|
4
|
|
50
|
|
|
61
|
$self->font->size($params{font_size} || 20); |
8
|
4
|
|
50
|
|
|
34
|
$self->font->line_height($params{line_height} || 16); |
9
|
|
|
|
|
|
|
} |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub add { |
12
|
57
|
|
|
57
|
0
|
280
|
my ($self, $file, %attributes) = @_; |
13
|
57
|
|
33
|
|
|
396
|
$attributes{h} ||= $self->font->size; |
14
|
57
|
50
|
|
|
|
331
|
$file->toc->outline($file, 'h5', %attributes) if $attributes{toc}; |
15
|
57
|
|
|
|
|
332
|
return $self->SUPER::add($file, %attributes); |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |