diff options
author | omnisci3nce <omniscient.oce@gmail.com> | 2024-07-17 14:45:31 +1000 |
---|---|---|
committer | omnisci3nce <omniscient.oce@gmail.com> | 2024-07-17 14:45:31 +1000 |
commit | f8641a5cc4c8baf1f0a7be3685afc219d90143d9 (patch) | |
tree | 6f6edf43f88b456933330ec83a203bf2f414bea4 /scripts/apidocs/gen_apidocs.py | |
parent | b9315f9cb625db09c3c41d8adf5230a67510bef7 (diff) |
whole thing is compiling and running again
Diffstat (limited to 'scripts/apidocs/gen_apidocs.py')
-rw-r--r-- | scripts/apidocs/gen_apidocs.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/apidocs/gen_apidocs.py b/scripts/apidocs/gen_apidocs.py index 390a081..cfce6ec 100644 --- a/scripts/apidocs/gen_apidocs.py +++ b/scripts/apidocs/gen_apidocs.py @@ -1,4 +1,9 @@ # Generates a static webpage for the public C-API of `celeritas-core` +# +# TODO: +# - remove prefixes like 'static' and 'inline' +# - parse docstrings from source + import re import os from pathlib import Path @@ -52,7 +57,8 @@ def emit_function_sig(signature: str) -> str: categories = { "RAL": "src/ral", - "Render": "src/new_render" + "Render": "src/new_render", + "Maths": "src/maths" } def find_pub_functions_in_folder(folder_path): |