コード例 #1
0
 def characters(self, content):
     e = XmlParser.characters(self, content)
     if not e.ignore:
         e.currentContent += content
コード例 #2
0
ファイル: xhtml2odt.py プロジェクト: vampolo/cacerp
 def characters(self, content):
     e = XmlParser.characters(self, content)
     if not e.ignore:
         e.currentContent += content
コード例 #3
0
 def characters(self, content):
     e = XmlParser.characters(self, content)
     if e.ignore: return
     e.currentContent += WhitespaceCruncher.crunch(content, e.currentContent)