Home
last modified time | relevance | path

Searched refs:to_xhtml_string (Results 1 – 3 of 3) sorted by relevance

/external/markdown/tests/
Dtest_apis.py130 markdown.serializers.to_xhtml_string(root),
141 markdown.serializers.to_xhtml_string(tree.getroot()),
538 markdown.serializers.to_xhtml_string(el),
555 markdown.serializers.to_xhtml_string(el),
564 markdown.serializers.to_xhtml_string(pi),
583 markdown.serializers.to_xhtml_string(div),
602 markdown.serializers.to_xhtml_string(div),
610 self.assertRaises(ValueError, markdown.serializers.to_xhtml_string, el)
617 markdown.serializers.to_xhtml_string(el),
626 markdown.serializers.to_xhtml_string(el),
/external/markdown/markdown/
Dcore.py33 from .serializers import to_html_string, to_xhtml_string
48 'xhtml': to_xhtml_string,
Dserializers.py188 def to_xhtml_string(element): function