Subversion Repositories navi

Compare Revisions

Ignore whitespace Rev 27 → Rev 28

/webapp/main.py
62,7 → 62,7
current = clear(unicode(thing["ipa"]))
else:
current = unicode(thing["navi"])
current = u" ".join([ur"[^ ]*"+x+ur"[^ ]*" for x in current.split(u" ")])
current = u" ".join([ur"[^ ]*"+x+ur"[^ ]*" for x in re.split(ur" (?=[^\]]",current)])
text += current + u"<br />"
self.write(text)