mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 13:10:37 +00:00
texi2html: remove stray \n
Single-quoted strings are printed verbatim in perl.
This commit is contained in:
parent
84fb63ed23
commit
58b68d6b36
14
doc/t2h.init
14
doc/t2h.init
@ -5,11 +5,13 @@ sub Libav_end_section($$)
|
||||
}
|
||||
|
||||
$EXTRA_HEAD =
|
||||
'<link rel="icon" href="favicon.png" type="image/png" />\n' .
|
||||
'<link rel="stylesheet" type="text/css" href="default.css" />\n';
|
||||
'<link rel="icon" href="favicon.png" type="image/png" />
|
||||
<link rel="stylesheet" type="text/css" href="default.css" />
|
||||
';
|
||||
|
||||
$AFTER_BODY_OPEN = '<div id="container">'.
|
||||
'<div id="body">';
|
||||
$AFTER_BODY_OPEN =
|
||||
'<div id="container">
|
||||
<div id="body">';
|
||||
|
||||
$PRE_BODY_CLOSE = '</div></div>';
|
||||
|
||||
@ -20,9 +22,9 @@ $print_page_foot = \&Libav_print_page_foot;
|
||||
sub Libav_print_page_foot($$)
|
||||
{
|
||||
my $fh = shift;
|
||||
print $fh '<div id="footer">\n';
|
||||
print $fh '<div id="footer">' . "\n";
|
||||
T2H_DEFAULT_print_page_foot($fh);
|
||||
print $fh '</div>\n';
|
||||
print $fh "</div>\n";
|
||||
}
|
||||
|
||||
$print_page_head = \&Libav_print_page_head;
|
||||
|
Loading…
Reference in New Issue
Block a user