|
| 1 | +copyright: Copyright © 2022-2025 RafaΕ KrupiΕski |
| 2 | +docs_dir: ../docs |
| 3 | +repo_name: python-lapidary/lapidary-render |
| 4 | +repo_url: https://github.com/python-lapidary/lapidary-render |
| 5 | +site_description: "Declarative Web API client generator for python" |
| 6 | +site_dir: "../site" |
| 7 | +site_name: Lapidary Render |
| 8 | +site_url: https://lapidary.github.io/lapidary-render |
| 9 | + |
| 10 | + |
| 11 | +nav: |
| 12 | +- index.md |
| 13 | +- Conversion: |
| 14 | + - OpenAPI: openapi.md |
| 15 | + - JSONSchema: json-schema.md |
| 16 | + |
| 17 | +watch: |
| 18 | +- mkdocs.yaml |
| 19 | +- ../src |
| 20 | +- ../Readme.md |
| 21 | + |
| 22 | + |
| 23 | +validation: |
| 24 | + omitted_files: warn |
| 25 | + absolute_links: warn |
| 26 | + unrecognized_links: warn |
| 27 | + |
| 28 | + |
| 29 | +theme: |
| 30 | + logo: assets/logo.svg |
| 31 | + icon: |
| 32 | + logo: assets/logo.svg |
| 33 | + favicon: assets/logo.svg |
| 34 | + name: material |
| 35 | + features: |
| 36 | + - announce.dismiss |
| 37 | + - content.action.view |
| 38 | + - content.code.annotate |
| 39 | + - content.code.copy |
| 40 | + - content.tooltips |
| 41 | + - navigation.footer |
| 42 | + - navigation.instant.preview |
| 43 | + - navigation.path |
| 44 | + - navigation.sections |
| 45 | + - navigation.tabs |
| 46 | + - navigation.tabs.sticky |
| 47 | + - navigation.top |
| 48 | + - search.highlight |
| 49 | + - search.suggest |
| 50 | + - toc.follow |
| 51 | + palette: |
| 52 | + - media: "(prefers-color-scheme)" |
| 53 | + toggle: |
| 54 | + icon: material/brightness-auto |
| 55 | + name: Switch to light mode |
| 56 | + - media: "(prefers-color-scheme: light)" |
| 57 | + scheme: default |
| 58 | + primary: teal |
| 59 | + accent: purple |
| 60 | + toggle: |
| 61 | + icon: material/weather-sunny |
| 62 | + name: Switch to dark mode |
| 63 | + - media: "(prefers-color-scheme: dark)" |
| 64 | + scheme: slate |
| 65 | + primary: black |
| 66 | + accent: lime |
| 67 | + toggle: |
| 68 | + icon: material/weather-night |
| 69 | + name: Switch to system preference |
| 70 | + |
| 71 | + |
| 72 | +markdown_extensions: |
| 73 | +- attr_list |
| 74 | +- admonition |
| 75 | +- callouts |
| 76 | +- footnotes |
| 77 | +- pymdownx.emoji: |
| 78 | + emoji_index: !!python/name:material.extensions.emoji.twemoji |
| 79 | + emoji_generator: !!python/name:material.extensions.emoji.to_svg |
| 80 | +- pymdownx.magiclink |
| 81 | +- pymdownx.snippets: |
| 82 | + base_path: [!relative $config_dir] |
| 83 | + check_paths: true |
| 84 | +- pymdownx.superfences |
| 85 | +- pymdownx.tabbed: |
| 86 | + alternate_style: true |
| 87 | + slugify: !!python/object/apply:pymdownx.slugs.slugify |
| 88 | + kwds: |
| 89 | + case: lower |
| 90 | +- pymdownx.tasklist: |
| 91 | + custom_checkbox: true |
| 92 | +- toc: |
| 93 | + permalink: "Β€" |
| 94 | + |
| 95 | +plugins: |
| 96 | +- search |
| 97 | +- autorefs |
| 98 | +- markdown-exec |
| 99 | +- section-index |
| 100 | +#- coverage |
| 101 | +- mkdocstrings: |
| 102 | + handlers: |
| 103 | + python: |
| 104 | + inventories: |
| 105 | + - https://docs.python.org/3/objects.inv |
| 106 | + paths: [src] |
| 107 | + options: |
| 108 | + backlinks: tree |
| 109 | + docstring_section_style: spacy |
| 110 | + docstring_style: sphinx |
| 111 | + filters: ["!^_"] |
| 112 | + heading_level: 1 |
| 113 | + members_order: source |
| 114 | + merge_init_into_class: true |
| 115 | + preload_modules: |
| 116 | + - httpx |
| 117 | + - pydantic |
| 118 | + - typing_extensions |
| 119 | + separate_signature: true |
| 120 | + show_root_full_path: false |
| 121 | + show_root_heading: true |
| 122 | + show_signature_annotations: true |
| 123 | + show_source: true |
| 124 | + show_symbol_type_heading: true |
| 125 | + show_symbol_type_toc: true |
| 126 | + signature_crossrefs: true |
| 127 | + summary: true |
| 128 | +- minify: |
| 129 | + minify_html: !ENV [DEPLOY, false] |
| 130 | + |
| 131 | +extra: |
| 132 | + social: |
| 133 | + - icon: fontawesome/brands/github |
| 134 | + link: https://github.com/rafalkrupinski |
| 135 | + - icon: fontawesome/brands/mastodon |
| 136 | + link: https://101010.pl/@mattesilver |
| 137 | + - icon: fontawesome/brands/python |
| 138 | + link: https://pypi.org/project/lapidary-render/ |
0 commit comments