##// END OF EJS Templates
Merge pull request #26 from Carreau/utf8fix...
Bussonnier Matthias -
r8175:ef67f84d merge
parent child Browse files
Show More
@@ -298,8 +298,8 b' class Converter(object):'
298 298 outfile = self.outbase + '.' + self.extension
299 299 if encoding is None:
300 300 encoding = self.default_encoding
301 with open(outfile, 'w') as f:
302 f.write(self.output.encode(encoding))
301 with io.open(outfile, 'w', encoding=encoding) as f:
302 f.write(self.output)
303 303 return os.path.abspath(outfile)
304 304
305 305 def optional_header(self):
@@ -781,6 +781,7 b' class ConverterHTML(Converter):'
781 781
782 782 # pygments css
783 783 pygments_css = HtmlFormatter().get_style_defs('.highlight')
784 header.extend(['<meta charset="UTF-8">'])
784 785 header.extend(self.in_tag('style', pygments_css, dict(type='text/css')))
785 786
786 787 # TODO: this should be allowed to use local mathjax:
@@ -1327,7 +1328,6 b' def md2html(infile):'
1327 1328
1328 1329 <head>
1329 1330 <title>{infile}</title>
1330
1331 1331 <style type="text/css">
1332 1332 {css}
1333 1333 </style>
General Comments 0
You need to be logged in to leave comments. Login now