Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cbf462 commit aa3f9fbCopy full SHA for aa3f9fb
1 file changed
Doc/perl/l2hinit.perl
@@ -31,6 +31,9 @@ package main;
31
$CHILDLINE = "\n<p><hr>\n";
32
$VERBOSITY = 0;
33
34
+# default # of columns for the index
35
+$INDEX_COLUMNS = 2;
36
+
37
38
# A little painful, but lets us clean up the top level directory a little,
39
# and not be tied to the current directory (as far as I can tell).
@@ -192,7 +195,7 @@ sub make_index_entry {
192
195
193
196
sub insert_index{
194
197
my($mark,$datafile) = @_;
- my $index = `$myrootdir/tools/buildindex.py $datafile`;
198
+ my $index = `$myrootdir/tools/buildindex.py --columns $INDEX_COLUMNS $datafile`;
199
s/$mark/$index/;
200
}
201
0 commit comments