|
1 | | -site_name: My Docs |
| 1 | +# Project Information |
| 2 | +site_name: Smithy Python |
| 3 | +watch: [README.md] |
| 4 | + |
| 5 | +# Copyright |
| 6 | +copyright: Copyright © 2025, Amazon Web Services, Inc |
| 7 | + |
| 8 | +# Repository |
| 9 | +repo_name: smithy-lang/smithy-python |
| 10 | +repo_url: https://github.com/smithy-lang/smithy-python |
| 11 | + |
| 12 | +# Theme |
| 13 | +theme: |
| 14 | + name: material |
| 15 | + logo: assets/smithy-anvil.svg |
| 16 | + palette: |
| 17 | + # Palette toggle for automatic mode |
| 18 | + - media: "(prefers-color-scheme)" |
| 19 | + toggle: |
| 20 | + icon: material/brightness-auto |
| 21 | + name: Switch to light mode |
| 22 | + |
| 23 | + # Palette toggle for light mode |
| 24 | + - media: "(prefers-color-scheme: light)" |
| 25 | + scheme: default |
| 26 | + toggle: |
| 27 | + icon: material/brightness-7 |
| 28 | + name: Switch to dark mode |
| 29 | + primary: black |
| 30 | + |
| 31 | + # Palette toggle for dark mode |
| 32 | + - media: "(prefers-color-scheme: dark)" |
| 33 | + scheme: slate |
| 34 | + toggle: |
| 35 | + icon: material/brightness-4 |
| 36 | + name: Switch to system preference |
| 37 | + primary: black |
| 38 | + features: |
| 39 | + - navigation.path |
| 40 | + - navigation.top |
| 41 | + - navigation.footer |
| 42 | + - content.code.copy |
| 43 | + |
| 44 | +# Plugins |
| 45 | +plugins: |
| 46 | +- mkdocstrings: |
| 47 | + handlers: |
| 48 | + python: |
| 49 | + paths: [packages/*/src] |
| 50 | + options: |
| 51 | + show_submodules: true |
| 52 | + show_symbol_type_heading: true |
| 53 | + show_symbol_type_toc: true |
| 54 | + |
| 55 | +# Navigation |
| 56 | +nav: |
| 57 | + - index.md |
| 58 | + - Packages: |
| 59 | + - smithy-core: packages/smithy-core.md |
| 60 | + - smithy-http: packages/smithy-http.md |
| 61 | + - smithy-json: packages/smithy-json.md |
| 62 | + - smithy-aws-core: packages/smithy-aws-core.md |
| 63 | + - smithy-aws-event-stream: packages/smithy-aws-event-stream.md |
| 64 | + - aws-sdk-signers: packages/aws-sdk-signers.md |
| 65 | + - Designs: |
| 66 | + - Auth: designs/auth.md |
| 67 | + - Documents: designs/documents.md |
| 68 | + - "Event Streams": designs/event-streams.md |
| 69 | + - Exceptions: designs/exceptions.md |
| 70 | + - "HTTP Interfaces": designs/http-interfaces.md |
| 71 | + - Retries: designs/retries.md |
| 72 | + - Serialization: designs/serialization.md |
| 73 | + - Shapes: designs/shapes.md |
| 74 | + |
| 75 | +# Extensions |
| 76 | +markdown_extensions: |
| 77 | + - admonition |
| 78 | + - pymdownx.highlight: |
| 79 | + anchor_linenums: true |
| 80 | + line_spans: __span |
| 81 | + pygments_lang_class: true |
| 82 | + - pymdownx.inlinehilite |
| 83 | + - pymdownx.snippets |
| 84 | + - pymdownx.superfences |
| 85 | + - toc: |
| 86 | + permalink: true |
| 87 | + |
| 88 | +# Extras |
| 89 | +extra: |
| 90 | + social: |
| 91 | + - icon: fontawesome/brands/github |
| 92 | + link: https://github.com/smithy-lang/smithy-python |
0 commit comments