Small changes to reflect changes in LaTeX2HTML support for newer versions
of LaTeX2HTML.
This commit is contained in:
parent
1e75e1776f
commit
1915754ec9
|
@ -361,13 +361,16 @@ class Job:
|
|||
|
||||
def write_l2h_aux_init_file(self):
|
||||
fp = open(self.l2h_aux_init_file, "w")
|
||||
d = string_to_perl(os.path.dirname(L2H_INIT_FILE))
|
||||
fp.write("package main;\n"
|
||||
"push (@INC, '%s');\n"
|
||||
"$mydir = '%s';\n"
|
||||
% (d, d))
|
||||
fp.write(open(L2H_INIT_FILE).read())
|
||||
fp.write("\n"
|
||||
"# auxillary init file for latex2html\n"
|
||||
"# generated by mkhowto\n"
|
||||
"push (@INC, '%s');\n"
|
||||
"$NO_AUTO_LINK = 1;\n"
|
||||
% os.path.dirname(L2H_INIT_FILE)
|
||||
)
|
||||
options = self.options
|
||||
l2hoption(fp, "ABOUT_FILE", options.about_file)
|
||||
|
|
|
@ -31,7 +31,9 @@ else
|
|||
mkdir $part
|
||||
fi
|
||||
|
||||
echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part" \
|
||||
echo "latex2html -no_auto_link" \
|
||||
"-up_url '../index.html' -up_title 'Documentation Index'" \
|
||||
"-init_file $srcdir/perl/l2hinit.perl -dir $part" \
|
||||
"${1:+$@} $srcdir/$part/$part.tex"
|
||||
latex2html \
|
||||
-no_auto_link \
|
||||
|
|
Loading…
Reference in New Issue