You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
texi2html: remove stray \n
Single-quoted strings are printed verbatim in perl.
This commit is contained in:
14
doc/t2h.init
14
doc/t2h.init
@@ -5,11 +5,13 @@ sub Libav_end_section($$)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$EXTRA_HEAD =
|
$EXTRA_HEAD =
|
||||||
'<link rel="icon" href="favicon.png" type="image/png" />\n' .
|
'<link rel="icon" href="favicon.png" type="image/png" />
|
||||||
'<link rel="stylesheet" type="text/css" href="default.css" />\n';
|
<link rel="stylesheet" type="text/css" href="default.css" />
|
||||||
|
';
|
||||||
|
|
||||||
$AFTER_BODY_OPEN = '<div id="container">'.
|
$AFTER_BODY_OPEN =
|
||||||
'<div id="body">';
|
'<div id="container">
|
||||||
|
<div id="body">';
|
||||||
|
|
||||||
$PRE_BODY_CLOSE = '</div></div>';
|
$PRE_BODY_CLOSE = '</div></div>';
|
||||||
|
|
||||||
@@ -20,9 +22,9 @@ $print_page_foot = \&Libav_print_page_foot;
|
|||||||
sub Libav_print_page_foot($$)
|
sub Libav_print_page_foot($$)
|
||||||
{
|
{
|
||||||
my $fh = shift;
|
my $fh = shift;
|
||||||
print $fh '<div id="footer">\n';
|
print $fh '<div id="footer">' . "\n";
|
||||||
T2H_DEFAULT_print_page_foot($fh);
|
T2H_DEFAULT_print_page_foot($fh);
|
||||||
print $fh '</div>\n';
|
print $fh "</div>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
$print_page_head = \&Libav_print_page_head;
|
$print_page_head = \&Libav_print_page_head;
|
||||||
|
Reference in New Issue
Block a user