feat(docs): switch docs to zensical (#125)

This commit is contained in:
banteg
2026-01-13 21:09:27 +04:00
committed by GitHub
parent f9757679c2
commit e671da0a0f
11 changed files with 259 additions and 466 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env python3
from __future__ import annotations
from pathlib import Path
import shutil
ROOT = Path(__file__).resolve().parents[1]
SRC = ROOT / "changelog.md"
DEST = ROOT / "docs" / "reference" / "changelog.md"
def main() -> None:
DEST.parent.mkdir(parents=True, exist_ok=True)
if DEST.is_symlink():
DEST.unlink()
shutil.copyfile(SRC, DEST)
if __name__ == "__main__":
main()