Lines Matching defs:escape
23 '|'.join(map(re.escape, ('(', '<', '<'))),
24 '|'.join(map(re.escape, ('.', ',', ')', '>', '\n', '>')))
126 be specified either in dotted notation (``xml.sax.saxutils.escape``)
127 or with a colon as object delimiter (``xml.sax.saxutils:escape``).
206 words = _word_split_re.split(text_type(escape(text)))
207 rel_attr = rel and ' rel="%s"' % text_type(escape(rel)) or ''
208 target_attr = target and ' target="%s"' % escape(target) or ''
284 return Markup(u'\n'.join(u'<p>%s</p>' % escape(x) for x in result))
561 quote your attributes or HTML escape it in addition.
647 from markupsafe import Markup, escape, soft_unicode