blob: 5c69f5c702fcfd5a37f1350bbcf7aa67dac1bcc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
def main(output, stylesheet):
css = open(stylesheet, "r").read()
css = (
css.replace("\\", "\\\\")
.replace("\r", "\\r")
.replace("\n", "\\n")
.replace('"', '\\"')
)
# Work around "error C2026: string too big"
# https://msdn.microsoft.com/en-us/library/dddywwsc.aspx
chunk_size = 10000
chunks = ('"%s"' % css[i : i + chunk_size] for i in range(0, len(css), chunk_size))
header = "#define EXAMPLE_STYLESHEET " + " ".join(chunks)
output.write(header)
|