Add support for python3

This commit is contained in:
Victor Cabello
2019-05-07 00:27:25 -05:00
parent db22fbfa34
commit 70ece88089
4 changed files with 92 additions and 71 deletions
+14 -14
View File
@@ -1,16 +1,16 @@
import os
ms_encoding = 'utf-8'
ms_port = '8009'
ms_host = 'localhost'
ms_debug = True
ms_reloader = True
html_extension = '.html'
root_path = os.path.dirname(__file__)
resource_dir = os.path.join(root_path,'resources')
markdown_dir = os.path.join(resource_dir,'markdown')
html_dir = os.path.join(resource_dir,'html')
css_dir = os.path.join(resource_dir,'css')
css_name = 'github.css'
css_path = os.path.join(css_dir,css_name)
markdown_type = 'gfm'
ms_encoding = "utf-8"
ms_port = "8009"
ms_host = "localhost"
ms_debug = True
ms_reloader = True
html_extension = ".html"
root_path = os.path.dirname(__file__)
resource_dir = os.path.join(root_path, "resources")
markdown_dir = os.path.join(resource_dir, "markdown")
html_dir = os.path.join(resource_dir, "html")
css_dir = os.path.join(resource_dir, "css")
css_name = "github.css"
css_path = os.path.join(css_dir, css_name)
markdown_type = "gfm"