X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b3abb355ebcf06fe47d450e7c2fc5074ae6f4b7c..ef1b52eee517d826c7c0e664f9a539b8ceffaaf6:/docs/mkdocs.yml diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index ab7dec30..df68cda8 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -1,5 +1,9 @@ site_name: Nominatim Documentation -theme: readthedocs +theme: + name: material + features: + - navigation.tabs +copyright: Copyright © 2023 Nominatim developer community docs_dir: ${CMAKE_CURRENT_BINARY_DIR} site_url: https://nominatim.org repo_url: https://github.com/openstreetmap/Nominatim @@ -35,6 +39,13 @@ nav: - 'Special Phrases': 'customize/Special-Phrases.md' - 'External data: US housenumbers from TIGER': 'customize/Tiger.md' - 'External data: Postcodes': 'customize/Postcodes.md' + - 'Library Guide': + - 'Getting Started': 'library/Getting-Started.md' + - 'Nominatim API class': 'library/NominatimAPI.md' + - 'Configuration': 'library/Configuration.md' + - 'Input Parameter Types': 'library/Input-Parameter-Types.md' + - 'Result Handling': 'library/Result-Handling.md' + - 'Low-level DB Access': 'library/Low-Level-DB-Access.md' - 'Developers Guide': - 'Architecture Overview' : 'develop/overview.md' - 'Database Layout' : 'develop/Database-Layout.md' @@ -45,12 +56,14 @@ nav: - 'Testing' : 'develop/Testing.md' - 'External Data Sources': 'develop/data-sources.md' - 'Appendix': - - 'Installation on Ubuntu 18' : 'appendix/Install-on-Ubuntu-18.md' - 'Installation on Ubuntu 20' : 'appendix/Install-on-Ubuntu-20.md' - 'Installation on Ubuntu 22' : 'appendix/Install-on-Ubuntu-22.md' markdown_extensions: - codehilite - admonition + - pymdownx.superfences + - pymdownx.tabbed: + alternate_style: true - def_list - toc: permalink:  @@ -59,7 +72,8 @@ plugins: - search - mkdocstrings: handlers: - python-legacy: - rendering: - show_source: false - show_signature_annotations: false + python: + paths: ["${PROJECT_SOURCE_DIR}"] + options: + show_source: False + show_bases: False