]> git.openstreetmap.org Git - nominatim.git/blob - mkdocs.yml
release 4.5.0.post7
[nominatim.git] / mkdocs.yml
1 site_name: Nominatim Manual
2 theme:
3   font: false
4   name: material
5   features:
6     - navigation.tabs
7     - toc.integrate
8   plugins:
9     - privacy
10 copyright: Copyright © Nominatim developer community
11 docs_dir: docs
12 site_url: https://nominatim.org
13 repo_url: https://github.com/openstreetmap/Nominatim
14 nav:
15     - 'Introduction' : 'index.md'
16     - 'API Reference':
17         - 'Overview': 'api/Overview.md'
18         - 'Search': 'api/Search.md'
19         - 'Reverse': 'api/Reverse.md'
20         - 'Address Lookup': 'api/Lookup.md'
21         - 'Details' : 'api/Details.md'
22         - 'Status' : 'api/Status.md'
23         - 'Place Output Formats': 'api/Output.md'
24         - 'FAQ': 'api/Faq.md'
25     - 'Administration Guide':
26         - 'Basic Installation': 'admin/Installation.md'
27         - 'Import' : 'admin/Import.md'
28         - 'Update' : 'admin/Update.md'
29         - 'Deploy' : 'admin/Deployment-Python.md'
30         - 'Nominatim UI'  : 'admin/Setup-Nominatim-UI.md'
31         - 'Advanced Installations' : 'admin/Advanced-Installations.md'
32         - 'Maintenance' : 'admin/Maintenance.md'
33         - 'Migration from older Versions' : 'admin/Migration.md'
34         - 'Troubleshooting' : 'admin/Faq.md'
35         - 'Installation on Ubuntu 22' : 'admin/Install-on-Ubuntu-22.md'
36         - 'Installation on Ubuntu 24' : 'admin/Install-on-Ubuntu-24.md'
37     - 'Customization Guide':
38         - 'Overview': 'customize/Overview.md'
39         - 'Import Styles': 'customize/Import-Styles.md'
40         - 'Configuration Settings': 'customize/Settings.md'
41         - 'API Result Formatting': 'customize/Result-Formatting.md'
42         - 'Per-Country Data': 'customize/Country-Settings.md'
43         - 'Place Ranking' : 'customize/Ranking.md'
44         - 'Importance' : 'customize/Importance.md'
45         - 'Tokenizers' : 'customize/Tokenizers.md'
46         - 'Special Phrases': 'customize/Special-Phrases.md'
47         - 'External data: US housenumbers from TIGER': 'customize/Tiger.md'
48         - 'External data: Postcodes': 'customize/Postcodes.md'
49         - 'Conversion to SQLite': 'customize/SQLite.md'
50     - 'Library Guide':
51         - 'Getting Started': 'library/Getting-Started.md'
52         - 'Nominatim API class': 'library/NominatimAPI.md'
53         - 'Configuration': 'library/Configuration.md'
54         - 'Input Parameter Types': 'library/Input-Parameter-Types.md'
55         - 'Result Handling': 'library/Result-Handling.md'
56         - 'Low-level DB Access': 'library/Low-Level-DB-Access.md'
57     - 'Developers Guide':
58         - 'Architecture Overview' : 'develop/overview.md'
59         - 'Database Layout' : 'develop/Database-Layout.md'
60         - 'Indexing' : 'develop/Indexing.md'
61         - 'Tokenizers' : 'develop/Tokenizers.md'
62         - 'Custom modules for ICU tokenizer': 'develop/ICU-Tokenizer-Modules.md'
63         - 'Setup for Development' : 'develop/Development-Environment.md'
64         - 'Testing' : 'develop/Testing.md'
65         - 'External Data Sources': 'develop/data-sources.md'
66 markdown_extensions:
67     - codehilite
68     - admonition
69     - pymdownx.superfences
70     - pymdownx.tabbed:
71         alternate_style: true
72     - def_list
73     - toc:
74         toc_depth: 4
75         permalink: ðŸ”—
76 extra_css: [extra.css, styles.css]
77 exclude_docs: |
78     mk_install_instructions.py
79 site_dir: site-html
80 plugins:
81     - search
82     - mkdocstrings:
83         handlers:
84           python:
85             paths: ["src"]
86             options:
87               show_source: False
88               show_bases: False
89     - gen-files:
90         scripts:
91           - docs/mk_install_instructions.py