Fix URLs for css in Windows

This commit is contained in:
Takeshi KOMIYA 2018-05-01 23:41:57 +09:00
parent b90c2576d6
commit 9f9288ebe7

View File

@ -355,7 +355,7 @@ class StandaloneHTMLBuilder(Builder):
continue
if '://' not in filename:
filename = path.join('_static', filename)
filename = posixpath.join('_static', filename)
self.css_files.append(Stylesheet(filename, **attrs)) # type: ignore