forked from ScoDoc/ScoDoc
PDF: substitute - for HYPHEN (U+2010)
This commit is contained in:
parent
e963ca52f5
commit
cf0d3c06c4
@ -84,6 +84,8 @@ def SU(s: str) -> str:
|
||||
s = html.unescape(s)
|
||||
# Remplace les <br> par des <br/>
|
||||
s = re.sub(r"<br\s*>", "<br/>", s)
|
||||
# And substitute unicode characters not supported by ReportLab
|
||||
s = s.replace("‐", "-")
|
||||
return s
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user