changeset 575:3530d38071c4

utillib: Add some HTML entity conversions.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Dec 2020 14:36:09 +0200
parents 2a1f3e0f0977
children 84e2f0dab633
files utillib.tcl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/utillib.tcl	Fri Nov 20 03:30:53 2020 +0200
+++ b/utillib.tcl	Fri Dec 18 14:36:09 2020 +0200
@@ -18,7 +18,7 @@
 append utl_html_ent_str "|&#x2026;|...|&hellip;|...|&#34;|\"|&#xad;||&#064;|#"
 append utl_html_ent_str "|&#xa0;| |&pound;|£|&#38;|&|&#158;|ž|&#196;|Ä|&#186;|º"
 append utl_html_ent_str "|&#8230;|...|&#47;|/|&#10;| |&#034;|\"|&#x27;|\""
-append utl_html_ent_str "|‘|'|’|'|”|\""
+append utl_html_ent_str "|‘|'|’|'|”|\"|&scaron;|š|&Scaron;|Š"
 
 set utl_html_ent_list [split [encoding convertfrom "utf-8" $utl_html_ent_str] "|"]