latex2html.ini 277 B

1234567891011121314151617
  1. $BLABLA = <<'BLA';
  2. \newcommand{\ttindex}[1]{{\renewcommand{\_}{\protect\underscore}%
  3. \index{#1@{\tt #1}}}}
  4. BLA
  5. $BLABLA =~ s/[\\\{\}\[\]]/\\$&/g;
  6. sub pre_pre_process {
  7. s/$BLABLA//i;
  8. }
  9. sub do_cmd_ttindex {
  10. &do_cmd_index;
  11. }
  12. 1;