diff options
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): |