Lines Matching refs:Markup
3 from . import Markup
6 def escape(s: t.Any) -> Markup:
15 :return: A :class:`Markup` string with the escaped text.
18 return Markup(s.__html__())
20 return Markup(
30 def escape_silent(s: t.Optional[t.Any]) -> Markup:
36 Markup('None')
38 Markup('')
41 return Markup()
48 a :class:`Markup` string rather than converting it back to a basic
54 Markup('<User 1>')
56 Markup('&lt;User 1&gt;')
58 Markup('<User 1>')