Subject: | Support for UTF-8 charachter encoding while generating Latex files |
Currently the conversion of html files to latex files is broken when it
encounters UTF-8 charachters.
In the sub routine
sub open_files()
Specify utf-8 support while opening the files for reading and writing
Should look something like
open(my $fh_in,"<:utf8", $htmlfile) or die "Can't open $htmlfile: $!";
open(my $fh_out,">:utf8", $texfile) or die "Can't open $htmlfile: $!";
and the utf8 package has to be used in the header of the file by specifying
use utf8;