-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
62 lines (57 loc) · 1.48 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
site_name: Xml2db Docs
site_url: https://cre-dev.github.io/xml2db
repo_url: https://github.com/cre-dev/xml2db
repo_name: cre-dev/xml2db
copyright: Copyright © 2024 Commission de régulation de l'énergie
site_description: Xml2db is a Python package to load XML files into a relational database. It handles complex XML and
works out of the box, without any custom mapping rules.
nav:
- Introduction: "index.md"
- "getting_started.md"
- "configuring.md"
- "how_it_works.md"
- Api:
- "api/overview.md"
- "api/data_model.md"
- "api/document.md"
- "api/xml_converter.md"
theme:
name: material
custom_dir: docs/overrides
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- navigation.footer
- navigation.top
- navigation.expand
- toc.follow
icon:
repo: fontawesome/brands/github
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
merge_init_into_class: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- toc:
permalink: true