t2h.init 478 B

123456789101112131415161718192021222324
  1. # no horiz rules between sections
  2. $end_section = \&FFMPEG_end_section;
  3. sub FFMPEG_end_section($$)
  4. {
  5. }
  6. $print_page_foot = \&FFMPEG_print_page_foot;
  7. sub FFMPEG_print_page_foot($$)
  8. {
  9. my $fh = shift;
  10. print $fh "$SMALL_RULE\n";
  11. T2H_DEFAULT_print_page_foot($fh);
  12. }
  13. # no navigation elements
  14. $SECTION_NAVIGATION = 0;
  15. # the same for texi2html 5.0
  16. $HEADERS = 0;
  17. # TOC and Chapter headings link
  18. $TOC_LINKS = 1;
  19. # print the TOC where @contents is used
  20. $INLINE_CONTENTS = 1;