X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=doc%2Fmakehelp.py;h=835b8731394524155444e446ef5229ce5b45106c;hp=460fef14dde3fb6a5474eb971c6d0853bc60efd6;hb=05ea818fc8edd266921db74a06211a074c5ae2a0;hpb=6230cf44c697419e67ab3b879acd8103a29c7d2d diff --git a/doc/makehelp.py b/doc/makehelp.py index 460fef1..835b873 100755 --- a/doc/makehelp.py +++ b/doc/makehelp.py @@ -37,6 +37,10 @@ while True: line = line.replace("%", "%%") # Hack Unicode non-breaking spaces into ordinary spaces line = line.replace("\xc2\xa0", " ").replace("\240", "") + # Hack right and left quotes into regular ASCII quotes + line = line.replace("\xe2\x80\x9c", '"').replace("\xe2\x80\x9d", '"') + # Hack dashes and bullets (Hmmm...might want to handle this in curses) + line = line.replace("\xe2\x80\x94", "-").replace("\xe2\x97\x8f", "*"); if line.startswith("Mnemonic:"): while not savetext[-1].strip(): savetext.pop()