commit a7fa5e2f21f173dd6d413fcfbcfdcee5d47cae67 parent c2cd3fb706a3976a32cf869068c42af97ce595a8 Author: vx-clutch <[email protected]> Date: Fri, 24 Oct 2025 13:28:03 -0400 update __gendoc.py Diffstat:
| M | build-aux/__gendoc.py | | | 29 | +++++++++++++++++++++++++++++ |
1 file changed, 29 insertions(+), 0 deletions(-)
diff --git a/build-aux/__gendoc.py b/build-aux/__gendoc.py @@ -46,6 +46,35 @@ import sys import os +header = ''' +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset="UTF-8"> +<style> +</style> +</head> +<body> +<div class="header"></div> +<div class="reference"> +<pre><code> +''' + +footer = ''' +</code></pre> +</div> +</body> +</html> +''' + +entry = ''' +%s // %s +''' + +# TODO: read all files +# TODO: Parse for /*- -*/ +# TODO: Add entry to entries arr + def main(args): print(f"call {args[0]}") return 0