-
Notifications
You must be signed in to change notification settings - Fork 10
/
make.py
48 lines (39 loc) · 1.47 KB
/
make.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
import base64
import re
from pathlib import Path
import pygments.formatters.html
import pygments.lexers
from jinja2 import Environment
from jinja2 import FileSystemLoader
from markupsafe import Markup
here = Path(__file__).parent
if __name__ == "__main__":
lexer = pygments.lexers.YamlLexer()
formatter = pygments.formatters.html.HtmlFormatter(style="friendly")
pygments_css = formatter.get_style_defs()
def example(filename: str) -> Markup:
contents = (here / ".github" / "workflows" / filename).read_text("utf8")
code = pygments.highlight(contents, lexer, formatter)
def hash_sub(m: re.Match) -> str:
return f'{m[1]}@<span class="action-hash">{m[2]}</span>'
code = re.sub(r"([0-9a-zA-Z._/-]+)@([0-9a-f]{40})", hash_sub, code)
return Markup(code)
def inline_image(filename: str) -> Markup:
file = here / filename
contents = file.read_bytes()
return Markup(
f"data:image/{ file.suffix };base64,"
+ base64.b64encode(contents).decode("ascii")
)
env = Environment(loader=FileSystemLoader([here]))
env.globals["example"] = example
env.globals["inline_image"] = inline_image
for page in ["index", "privacy", "security", "setup"]:
(here / f"{page}.html").write_bytes(
env.get_template(f"{page}.html.jinja2")
.render(
pygments_css=pygments_css,
)
.encode()
)