Commit d8a09169 authored by Janne Grunau's avatar Janne Grunau

doc: add support for an optional navigation bar in texi2html pages

The navigation header for the web pages lives in a different repository.
Read it during documentation regeneration to use the same navigation bar
on all pages.
parent 32caa7b1
......@@ -9,9 +9,13 @@ $EXTRA_HEAD =
<link rel="stylesheet" type="text/css" href="default.css" />
';
my $LIBAV_NAVBAR = $ENV{"LIBAV_NAVBAR"} || '';
$AFTER_BODY_OPEN =
'<div id="container">
<div id="body">';
'<div id="container">' .
"\n$LIBAV_NAVBAR\n" .
'<div id="body">';
$PRE_BODY_CLOSE = '</div></div>';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment