[Tree doc Tex] fix "-" char on place name (#961)
* fix "-" char on place name "-" can lead to confusion, generating text out of the box with PDF file format
This commit is contained in:
parent
05f7744cba
commit
aea9ef3645
@ -519,6 +519,7 @@ class TreeDocBase(BaseDoc, TreeDoc):
|
||||
date_str = date_str + '/' + stop_date
|
||||
|
||||
place = escape(_pd.display_event(db, event))
|
||||
place = place.replace("-", "\--")
|
||||
|
||||
if modifier:
|
||||
event_type += '+'
|
||||
|
Loading…
Reference in New Issue
Block a user