]> git.openstreetmap.org Git - nominatim.git/blob - docs/mkdocs.yml
docs: add customization hints for secondary importance
[nominatim.git] / docs / mkdocs.yml
1 site_name: Nominatim Documentation
2 theme: readthedocs
3 docs_dir: ${CMAKE_CURRENT_BINARY_DIR}
4 site_url: https://nominatim.org
5 repo_url: https://github.com/openstreetmap/Nominatim
6 nav:
7     - 'Introduction' : 'index.md'
8     - 'API Reference':
9         - 'Overview': 'api/Overview.md'
10         - 'Search': 'api/Search.md'
11         - 'Reverse': 'api/Reverse.md'
12         - 'Address Lookup': 'api/Lookup.md'
13         - 'Details' : 'api/Details.md'
14         - 'Status' : 'api/Status.md'
15         - 'Place Output Formats': 'api/Output.md'
16         - 'FAQ': 'api/Faq.md'
17     - 'Administration Guide':
18         - 'Basic Installation': 'admin/Installation.md'
19         - 'Import' : 'admin/Import.md'
20         - 'Update' : 'admin/Update.md'
21         - 'Deploy' : 'admin/Deployment.md'
22         - 'Nominatim UI'  : 'admin/Setup-Nominatim-UI.md'
23         - 'Advanced Installations' : 'admin/Advanced-Installations.md'
24         - 'Maintenance' : 'admin/Maintenance.md'
25         - 'Migration from older Versions' : 'admin/Migration.md'
26         - 'Troubleshooting' : 'admin/Faq.md'
27     - 'Customization Guide':
28         - 'Overview': 'customize/Overview.md'
29         - 'Import Styles': 'customize/Import-Styles.md'
30         - 'Configuration Settings': 'customize/Settings.md'
31         - 'Per-Country Data': 'customize/Country-Settings.md'
32         - 'Place Ranking' : 'customize/Ranking.md'
33         - 'Importance' : 'customize/Importance.md'
34         - 'Tokenizers' : 'customize/Tokenizers.md'
35         - 'Special Phrases': 'customize/Special-Phrases.md'
36         - 'External data: US housenumbers from TIGER': 'customize/Tiger.md'
37         - 'External data: Postcodes': 'customize/Postcodes.md'
38     - 'Developers Guide':
39         - 'Architecture Overview' : 'develop/overview.md'
40         - 'Database Layout' : 'develop/Database-Layout.md'
41         - 'Indexing' : 'develop/Indexing.md'
42         - 'Tokenizers' : 'develop/Tokenizers.md'
43         - 'Custom modules for ICU tokenizer': 'develop/ICU-Tokenizer-Modules.md'
44         - 'Setup for Development' : 'develop/Development-Environment.md'
45         - 'Testing' : 'develop/Testing.md'
46         - 'External Data Sources': 'develop/data-sources.md'
47     - 'Appendix':
48         - 'Installation on Ubuntu 18' : 'appendix/Install-on-Ubuntu-18.md'
49         - 'Installation on Ubuntu 20' : 'appendix/Install-on-Ubuntu-20.md'
50         - 'Installation on Ubuntu 22' : 'appendix/Install-on-Ubuntu-22.md'
51 markdown_extensions:
52     - codehilite
53     - admonition
54     - def_list
55     - toc:
56         permalink: 
57 extra_css: [extra.css, styles.css]
58 plugins:
59     - search
60     - mkdocstrings:
61         handlers:
62           python-legacy:
63             rendering:
64               show_source: false
65               show_signature_annotations: false