Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
erinata committed Apr 10, 2012
1 parent ec71c94 commit 62acedd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MarkdownBuild.py
Expand Up @@ -16,7 +16,7 @@ def run(self):
contents = view.substr(sublime.Region(0, view.size())) contents = view.substr(sublime.Region(0, view.size()))
md = markdown_python.markdown(contents) md = markdown_python.markdown(contents)
html = '<html><meta charset="UTF-8">' html = '<html><meta charset="UTF-8">'
css = os.path.join(sublime.packages_path(), 'SublimeMarkdownBuild', 'markdown.css') css = os.path.join(sublime.packages_path(), 'MarkdownBuild', 'markdown.css')
if (os.path.isfile(css)): if (os.path.isfile(css)):
styles = open(css, 'r').read() styles = open(css, 'r').read()
html += '<style>' + styles + '</style>' html += '<style>' + styles + '</style>'
Expand Down

0 comments on commit 62acedd

Please sign in to comment.