Fix #4411 (pmlz to epub conversion loses navigation point names) and various QSG tweaks

This commit is contained in:
Kovid Goyal 2010-01-31 08:49:17 -07:00
commit c14e8aeb0e
2 changed files with 8 additions and 4 deletions

Binary file not shown.

View File

@ -182,12 +182,16 @@ class PML_HTMLizer(object):
return pml return pml
def strip_pml(self, pml): def strip_pml(self, pml):
pml = re.sub(r'\\.\d=""', '', pml) pml = re.sub(r'\\C\d=".+*"', '', pml)
pml = re.sub(r'\\.=""', '', pml) pml = re.sub(r'\\Fn=".+*"', '', pml)
pml = re.sub(r'\\.\d', '', pml) pml = re.sub(r'\\Sd=".+*"', '', pml)
pml = re.sub(r'\\.', '', pml) pml = re.sub(r'\\.=".+*"', '', pml)
pml = re.sub(r'\\X\d', '', pml)
pml = re.sub(r'\\S[pbd]', '', pml)
pml = re.sub(r'\\Fn', '', pml)
pml = re.sub(r'\\a\d\d\d', '', pml) pml = re.sub(r'\\a\d\d\d', '', pml)
pml = re.sub(r'\\U\d\d\d\d', '', pml) pml = re.sub(r'\\U\d\d\d\d', '', pml)
pml = re.sub(r'\\.', '', pml)
pml.replace('\r\n', ' ') pml.replace('\r\n', ' ')
pml.replace('\n', ' ') pml.replace('\n', ' ')
pml.replace('\r', ' ') pml.replace('\r', ' ')