This commit is contained in:
Christopher Ramírez 2014-02-03 16:39:27 -06:00
parent 7b81a294bd
commit 2f76982c38

View file

@ -300,6 +300,10 @@ class Render(object):
""" """
Convert a markdown text into a ODT formated text Convert a markdown text into a ODT formated text
""" """
if not isinstance(markdown_text, basestring):
return ''
from xml.dom import Node from xml.dom import Node
from markdown_map import transform_map from markdown_map import transform_map