Add support for python3
This commit is contained in:
@@ -1,61 +1,75 @@
|
||||
from __future__ import print_function
|
||||
from __future__ import absolute_import
|
||||
from builtins import object
|
||||
import markdown as md
|
||||
import codecs
|
||||
import sys
|
||||
import os
|
||||
from env import *
|
||||
from .env import css_path, ms_encoding, markdown_type, \
|
||||
html_dir, html_extension
|
||||
|
||||
|
||||
class MarkdownConverter(object):
|
||||
|
||||
def __init__(self):
|
||||
css = codecs.open(css_path,encoding=ms_encoding,mode='r')
|
||||
self.html_header = '''
|
||||
css = codecs.open(css_path, encoding=ms_encoding, mode="r")
|
||||
self.html_header = (
|
||||
"""
|
||||
<html>
|
||||
<head>
|
||||
<style type='text/css'>
|
||||
<!--
|
||||
''' + css.read() + \
|
||||
'''
|
||||
"""
|
||||
+ css.read()
|
||||
+ """
|
||||
//-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class='markdown-body'>
|
||||
'''
|
||||
self.html_footer = '''
|
||||
"""
|
||||
)
|
||||
self.html_footer = """
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
'''
|
||||
"""
|
||||
|
||||
def convert(self,src,dst=""):
|
||||
def convert(self, src, dst=""):
|
||||
code = md.markdown(self.read_md(src), extensions=[markdown_type])
|
||||
return self.write_html(code,src,dst)
|
||||
return self.write_html(code, src, dst)
|
||||
|
||||
def read_md(self,file_name):
|
||||
md_file = codecs.open(os.path.join(markdown_dir, file_name),encoding=ms_encoding,mode='r')
|
||||
def read_md(self, file_name):
|
||||
workingdir = os.getcwd()
|
||||
md_file = codecs.open(
|
||||
os.path.join(workingdir, file_name),
|
||||
encoding=ms_encoding,
|
||||
mode="r"
|
||||
)
|
||||
return md_file.read()
|
||||
|
||||
def write_html(self,body,file_name,dst):
|
||||
def write_html(self, body, file_name, dst):
|
||||
html_path = os.path.join(html_dir, file_name + html_extension)
|
||||
|
||||
if dst != "":
|
||||
html_path = dst
|
||||
try:
|
||||
os.makedirs('/'.join(html_path.replace('\\', '/').split('/')[:-1]))
|
||||
except OSError as exc:
|
||||
os.makedirs("/".join(html_path.replace("\\", "/").split("/")[:-1]))
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
html_file = codecs.open(html_path,encoding=ms_encoding,mode='w')
|
||||
|
||||
html_file = codecs.open(html_path, encoding=ms_encoding, mode="w")
|
||||
html_file.write(self.html_header + body + self.html_footer)
|
||||
return html_path
|
||||
|
||||
|
||||
def main():
|
||||
args = sys.argv
|
||||
if len(args) != 3:
|
||||
print('usage: convert source_md_file target_html_file')
|
||||
print("usage: convert source_md_file target_html_file")
|
||||
else:
|
||||
converter = MarkdownConverter()
|
||||
converter.convert(args[1],args[2])
|
||||
converter.convert(args[1], args[2])
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user