コード例 #1
0
def docutils_rest_to_html(rest):
    return util.docutils_rest_to_html(rest)
コード例 #2
0
ファイル: rest_editor_view.py プロジェクト: carlkibler/rested
 def docutils_rst2html(self, info):
     rest = info.object.selected_view.model.rest
     html_filepath = info.object.selected_view.model.html_filepath
     f = open(html_filepath, 'w')
     f.write(docutils_rest_to_html(rest)[0])
     f.close()
コード例 #3
0
ファイル: rest_editor_view.py プロジェクト: jvb/Rested
 def docutils_rst2html(self, info):
     rest = info.object.selected_view.model.rest
     html_filepath = info.object.selected_view.model.html_filepath
     f = open(html_filepath, 'w')
     f.write(docutils_rest_to_html(rest)[0])
     f.close()
コード例 #4
0
def docutils_rest_to_html(rest):
    return util.docutils_rest_to_html(rest)