Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f863609c
Commit
f863609c
authored
May 03, 2006
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tell LaTeX2HTML to:
- use UTF-8 output - not mess with the >>> prompt!
parent
e10b21bd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
Doc/perl/l2hinit.perl
Doc/perl/l2hinit.perl
+15
-1
No files found.
Doc/perl/l2hinit.perl
View file @
f863609c
...
...
@@ -4,7 +4,14 @@ package main;
use L2hos;
$HTML_VERSION = 4.0;
$HTML_VERSION = 4.01;
$LOWER_CASE_TAGS = 1;
$NO_FRENCH_QUOTES = 1;
# Force Unicode support to be loaded; request UTF-8 output.
do_require_extension('unicode');
do_require_extension('utf8');
$HTML_OPTIONS = 'utf8';
$MAX_LINK_DEPTH = 2;
$ADDRESS = '';
...
...
@@ -106,6 +113,13 @@ sub custom_driver_hook {
$ENV{'TEXINPUTS'} = undef;
}
print "\nSetting \$TEXINPUTS to $TEXINPUTS\n";
# Not sure why we need to deal with this both here and at the top,
# but this is needed to actually make it work.
do_require_extension('utf8');
$charset = $utf8_str;
$CHARSET = $utf8_str;
$USE_UTF = 1;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment