Quote:
Originally Posted by Markismus
Try using another font.
|
It's not possible to change the font in the Dictionary app. I guess I would have to modify the font in the system files, because there is no global setting in the interface. That could be the topic of another thread, but I don't care too much about this issue myself.
Testing your Nov15th2021 versions:
- Babylon_English_Greek dictionary: works perfectly
- Duden: works perfectly
- Longman: works perfectly
- Nouveau Littré: works perfectly
Very nice!
Quote:
Originally Posted by Markismus
I've created a subroutine to remove the html-escape characters:
Code:
sub unEscapeHTMLString{
my $String = shift;
$String =~ s~\<~<~sg;
$String =~ s~\>~>~sg;
$String =~ s~\'~'~sg;
$String =~ s~\&~&~sg;
$String =~ s~\"~"~sg;
return $String;}
|
Why did you need to? Wasn't it done on
line 1582?