Home | History | Annotate | Download | only in markupsafe

Lines Matching refs:markup

24 static PyObject* markup;
45 /* import markup type so that we can mark the return value */
49 markup = PyObject_GetAttrString(module, "Markup");
129 return PyObject_CallFunctionObjArgs(markup, text, NULL);
155 /* convert the unicode string into a markup object. */
156 rv = PyObject_CallFunctionObjArgs(markup, (PyObject*)s, NULL);
167 return PyObject_CallFunctionObjArgs(markup, NULL);
187 "escape(s) -> markup\n\n"
190 "such characters in HTML. Marks return value as markup string."},
192 "escape_silent(s) -> markup\n\n"
196 "Make a string unicode if it isn't already. That way a markup\n"