# HG changeset patch # User Matti Hamalainen # Date 1609830835 -7200 # Node ID 1ace0cbde1dd3ce75d30ef4fec01bd67f5c56154 # Parent 148c7553c50f09c6c358d0ed467122607dfbbf71 utillib: Add missing HTML entity. diff -r 148c7553c50f -r 1ace0cbde1dd utillib.tcl --- a/utillib.tcl Mon Jan 04 12:20:38 2021 +0200 +++ b/utillib.tcl Tue Jan 05 09:13:55 2021 +0200 @@ -18,7 +18,7 @@ append utl_html_ent_str "|…|...|…|...|"|\"|­||@|#" append utl_html_ent_str "| | |£|£|&|&|ž|ž|Ä|Ä|º|º" append utl_html_ent_str "|…|...|/|/| | |"|\"|'|\"" -append utl_html_ent_str "|‘|'|’|'|”|\"|š|š|Š|Š" +append utl_html_ent_str "|‘|'|’|'|”|\"|š|š|Š|Š|%|%" set utl_html_ent_list [split [encoding convertfrom "utf-8" $utl_html_ent_str] "|"]