|
| 1 | +site_name: onETL Docs |
| 2 | +docs_dir: '../../docs/en' # Where to find the English markdown files |
| 3 | +site_dir: '../../generated/en' # Where to put the English HTML files |
| 4 | + |
| 5 | +theme: |
| 6 | + name: material |
| 7 | + # custom_dir: '../../overrides/' # This is where the customization of the theme lives |
| 8 | + # logo: assets/images/logo.svg # The logo is shared by all languages |
| 9 | + # favicon: assets/images/icon.svg # The favicon is shared by all languages |
| 10 | + language: en |
| 11 | + features: |
| 12 | + - navigation.indexes |
| 13 | + - content.tabs.link |
| 14 | + - content.code.copy |
| 15 | + - content.code.select |
| 16 | + - content.footnote.tooltips |
| 17 | + palette: |
| 18 | + - scheme: default |
| 19 | + toggle: |
| 20 | + icon: material/weather-night |
| 21 | + name: Switch to dark mode |
| 22 | + - scheme: slate |
| 23 | + toggle: |
| 24 | + icon: material/weather-sunny |
| 25 | + name: Switch to light mode |
| 26 | + locale: en |
| 27 | + highlightjs: true |
| 28 | + hljs_languages: |
| 29 | + - yaml |
| 30 | + |
| 31 | +extra_css: |
| 32 | + - assets/stylesheets/autodoc_pydantic.css # CSS is shared by all languages |
| 33 | + |
| 34 | +extra: # Language Selection |
| 35 | + onetl_logo_wide: "[](https://github.com/MobileTeleSystems/onetl)" |
| 36 | + repo_status_badge: "[](https://github.com/MobileTeleSystems/onetl)" |
| 37 | + pypi_release_bage: "[](https://pypi.org/project/onetl/)" |
| 38 | + pypi_license_bage: "[](https://github.com/MobileTeleSystems/onetl/blob/develop/LICENSE.txt)" |
| 39 | + pypi_pyversion_bage: "[](https://pypi.org/project/onetl/)" |
| 40 | + pypi_downloads_bage: "[](https://pypi.org/project/onetl/)" |
| 41 | + docs_status_badge: "[](https://onetl.readthedocs.io/)" |
| 42 | + ci_status_badge: "[](https://github.com/MobileTeleSystems/onetl/actions)" |
| 43 | + precommit_badge: "[](https://results.pre-commit.ci/latest/github/MobileTeleSystems/onetl/develop)" |
| 44 | + test_cov_badge: "[](https://codecov.io/gh/MobileTeleSystems/onetl)" |
| 45 | + etl_entities_link: "[`etl-entities`](https://github.com/MobileTeleSystems/etl-entities)" |
| 46 | + |
| 47 | + alternate: |
| 48 | + |
| 49 | + # Switch to English |
| 50 | + - name: English |
| 51 | + link: /en/ |
| 52 | + lang: en |
| 53 | + |
| 54 | + # Switch to Russian |
| 55 | + - name: Русский |
| 56 | + link: /ru/ |
| 57 | + lang: ru |
| 58 | + |
| 59 | +plugins: |
| 60 | + - autorefs |
| 61 | + - literate-nav: |
| 62 | + nav_file: nav.md |
| 63 | + - mkdocstrings: |
| 64 | + default_handler: python |
| 65 | + handlers: |
| 66 | + python: |
| 67 | + options: |
| 68 | + show_source: false |
| 69 | + show_root_heading: false |
| 70 | + show_root_toc_entry: false |
| 71 | + # extensions: |
| 72 | + # - griffe_sphinx |
| 73 | + # - griffe_pydantic: {schema: false} |
| 74 | + - macros |
| 75 | + - plantuml: |
| 76 | + puml_url: https://www.plantuml.com/plantuml/ |
| 77 | + puml_keyword: plantuml |
| 78 | + # - i18n: |
| 79 | + # docs_structure: folder |
| 80 | + # languages: |
| 81 | + # - locale: en |
| 82 | + # default: true |
| 83 | + # name: English |
| 84 | + # build: true |
| 85 | + # - locale: ru |
| 86 | + # name: Русский |
| 87 | + # build: false |
| 88 | + |
| 89 | +markdown_extensions: |
| 90 | + - footnotes |
| 91 | + - attr_list |
| 92 | + - md_in_html |
| 93 | + - admonition |
| 94 | + - pymdownx.details |
| 95 | + - pymdownx.critic |
| 96 | + # - markdown_include.include |
| 97 | + - pymdownx.snippets: |
| 98 | + base_path: ["."] |
| 99 | + check_paths: true |
| 100 | + - toc: |
| 101 | + permalink: true |
| 102 | + - pymdownx.tabbed: |
| 103 | + alternate_style: true |
| 104 | + - pymdownx.emoji: |
| 105 | + emoji_index: !!python/name:material.extensions.emoji.twemoji |
| 106 | + emoji_generator: !!python/name:material.extensions.emoji.to_svg |
| 107 | + - pymdownx.superfences: |
| 108 | + custom_fences: |
| 109 | + - name: mermaid |
| 110 | + class: mermaid |
| 111 | + format: !!python/name:pymdownx.superfences.fence_code_format |
| 112 | + |
| 113 | +# nav: |
| 114 | +# - "Concepts": concepts |
| 115 | +# - "Quickstart": quickstart |
| 116 | +# - "Logging": logging |
| 117 | +# - "Security": security |
| 118 | +# - "Contributing Guide": contributing |
| 119 | +# - "Plugins": plugins |
| 120 | +# - changelog: |
| 121 | +# - changelog/index.md |
| 122 | +# - "0.13.4": changelog/0.13.4 |
| 123 | +# - "0.13.3": changelog/0.13.3 |
| 124 | +# - "0.13.1": changelog/0.13.1 |
| 125 | +# - "0.13.0": changelog/0.13.0 |
| 126 | +# - "0.12.5": changelog/0.12.5 |
| 127 | +# - "0.12.4": changelog/0.12.4 |
| 128 | +# - "0.12.3": changelog/0.12.3 |
| 129 | +# - "0.12.2": changelog/0.12.2 |
| 130 | +# - "0.12.1": changelog/0.12.1 |
| 131 | +# - "0.12.0": changelog/0.12.0 |
| 132 | +# - "0.11.2": changelog/0.11.2 |
| 133 | +# - "0.11.1": changelog/0.11.1 |
| 134 | +# - "0.11.0": changelog/0.11.0 |
| 135 | +# - "0.10.2": changelog/0.10.2 |
| 136 | +# - "0.10.1": changelog/0.10.1 |
| 137 | +# - "0.10.0": changelog/0.10.0 |
| 138 | +# - "0.9.5": changelog/0.9.5 |
| 139 | +# - "0.9.4": changelog/0.9.4 |
| 140 | +# - "0.9.3": changelog/0.9.3 |
| 141 | +# - "0.9.2": changelog/0.9.2 |
| 142 | +# - "0.9.1": changelog/0.9.1 |
| 143 | +# - "0.9.0": changelog/0.9.0 |
| 144 | +# - "0.8.1": changelog/0.8.1 |
| 145 | +# - "0.8.0": changelog/0.8.0 |
| 146 | +# - "0.7.2": changelog/0.7.2 |
| 147 | +# - "0.7.1": changelog/0.7.1 |
| 148 | +# - "0.7.0": changelog/0.7.0 |
| 149 | +# - "DB": |
| 150 | +# - db_/index.md |
| 151 | +# - "DBReader": db_/reader |
| 152 | +# - "DBWriter": db_/writer |
0 commit comments