mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
70 lines
2.0 KiB
Python
70 lines
2.0 KiB
Python
import os
|
|
from pathlib import Path
|
|
from shutil import copytree, rmtree
|
|
|
|
from jinja2 import Environment, select_autoescape, FileSystemLoader
|
|
from markupsafe import Markup
|
|
from json_schema_for_humans.generate import GenerationConfiguration
|
|
from markdown import Markdown
|
|
|
|
from lib.Schema import Schema
|
|
from lib.Page import Page
|
|
|
|
OUT_DIR = os.getenv("OUT_DIR", "/")
|
|
|
|
if Path("out/").exists():
|
|
rmtree("out/", ignore_errors=True)
|
|
|
|
copytree("content/static", "out")
|
|
os.makedirs("out/schemas", exist_ok=True)
|
|
|
|
env = Environment(
|
|
loader=FileSystemLoader("content"),
|
|
autoescape=select_autoescape(['jinja2'])
|
|
)
|
|
|
|
markdown_settings = {
|
|
'extensions': ['extra', 'meta']
|
|
}
|
|
|
|
schema_settings = GenerationConfiguration(custom_template_path="content/base/schema_base.jinja2")
|
|
schema_settings.link_to_reused_ref = False
|
|
|
|
md = Markdown(**markdown_settings)
|
|
|
|
env.filters["upper_first"] = lambda x: x[0].upper() + x[1:]
|
|
env.filters["markdown"] = lambda text: Markup(md.convert(text))
|
|
env.filters["static"] = lambda path: str(Path(OUT_DIR, path).as_posix())
|
|
|
|
pages_paths = Path("content/pages").glob("**/*.md")
|
|
schemas_paths = Path("content/schemas").glob("**/*.json")
|
|
|
|
router = {}
|
|
|
|
env.filters['route'] = lambda title: router.get(title.lower(), "#")
|
|
|
|
pages = []
|
|
schemas = []
|
|
|
|
for page_path in pages_paths:
|
|
new_page = Page(page_path, env, markdown_settings)
|
|
router[new_page.title.lower()] = OUT_DIR + str(new_page.out_path.relative_to('out/'))
|
|
pages.append(new_page)
|
|
|
|
for schema_path in schemas_paths:
|
|
new_schema = Schema(schema_path, env, schema_settings)
|
|
router[new_schema.title.lower()] = OUT_DIR + "schemas/" + str(new_schema.out_path.relative_to("out/schemas/"))
|
|
schemas.append(new_schema)
|
|
|
|
router['home'] = OUT_DIR
|
|
|
|
pages.sort(key=lambda p: p.sort_priority, reverse=True)
|
|
|
|
for page in pages:
|
|
print(page.in_path, "->", page.out_path)
|
|
page.render(page=page, pages=pages, schemas=schemas)
|
|
|
|
for schema in schemas:
|
|
print(schema.in_path, "->", schema.out_path)
|
|
schema.render(page=schema, pages=pages, schemas=schemas)
|