Hi! Is there a way to disable URL encoding for non-ASCII (UTF-8) characters? Once saving the HTML file the links turn into URL encoding format and IE is unable to read them. Thnx for help!
Example:
Prior editing and saving in LibreOffice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
</head>
<body lang="cs-CZ" text="#000000" dir="ltr" style="background: transparent">
<p><a href="Íii.odt" target="_blank">Íii</a></p>
<p>
</p>
</body>
</html>
After editing and saving in LibreOffice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<title></title>
<meta name="created" content="0;0">
<meta name="changed" content="20140311;164828687000000">
<style type="text/css">
<!--
p { color: #000000 }
-->
</style>
</head>
<body lang="cs-CZ" text="#000000" dir="ltr" style="background: transparent">
<p><a href="%C3%ADii.odt" target="_blank">Íii</a></p>
<p><br>
</p>
</body>
</html>