|
| 1 | +site_name: mkdocs_template |
| 2 | +site_description: A modern documentation template built with MkDocs Material. |
| 3 | +site_author: SHADIL A M |
| 4 | +site_url: https://shadil-rayyan.github.io/mkdocs_template/ |
| 5 | + |
| 6 | +# Repository |
| 7 | +repo_name: mkdocs_template |
| 8 | +repo_url: https://github.com/shadil-rayyan/mkdocs_template |
| 9 | +edit_uri: edit/main/docs/ |
| 10 | + |
| 11 | +theme: |
| 12 | + name: material |
| 13 | + custom_dir: overrides |
| 14 | + logo: assets/logo.png |
| 15 | + favicon: assets/favicon.ico |
| 16 | + |
| 17 | + features: |
| 18 | + - navigation.instant |
| 19 | + - navigation.instant.prefetch |
| 20 | + - navigation.instant.progress |
| 21 | + - navigation.tracking |
| 22 | + - navigation.tabs |
| 23 | + - navigation.tabs.sticky |
| 24 | + - navigation.sections |
| 25 | + - navigation.expand |
| 26 | + - navigation.path |
| 27 | + - navigation.top |
| 28 | + - navigation.footer |
| 29 | + - navigation.indexes |
| 30 | + - search.highlight |
| 31 | + - search.suggest |
| 32 | + - search.share |
| 33 | + - content.code.copy |
| 34 | + - content.code.annotate |
| 35 | + - content.tabs.link |
| 36 | + - toc.follow |
| 37 | + |
| 38 | + font: |
| 39 | + text: Inter |
| 40 | + code: JetBrains Mono |
| 41 | + |
| 42 | + palette: |
| 43 | + - media: "(prefers-color-scheme)" |
| 44 | + toggle: |
| 45 | + icon: material/brightness-auto |
| 46 | + name: Switch to system preference |
| 47 | + - media: "(prefers-color-scheme: light)" |
| 48 | + scheme: default |
| 49 | + primary: indigo |
| 50 | + accent: indigo |
| 51 | + toggle: |
| 52 | + icon: material/brightness-7 |
| 53 | + name: Switch to light mode |
| 54 | + - media: "(prefers-color-scheme: dark)" |
| 55 | + scheme: slate |
| 56 | + primary: indigo |
| 57 | + accent: indigo |
| 58 | + toggle: |
| 59 | + icon: material/brightness-4 |
| 60 | + name: Switch to dark mode |
| 61 | + |
| 62 | +plugins: |
| 63 | + - search |
| 64 | + - minify: |
| 65 | + minify_html: true |
| 66 | + - git-revision-date-localized: |
| 67 | + enable_if_directory_urls: true |
| 68 | + type: datetime |
| 69 | + - git-authors: |
| 70 | + show_email: false |
| 71 | + - tags |
| 72 | + |
| 73 | +extra: |
| 74 | + social: |
| 75 | + - icon: fontawesome/brands/github |
| 76 | + link: https://github.com/shadil-rayyan |
| 77 | + - icon: fontawesome/brands/twitter |
| 78 | + link: https://twitter.com/shadilrayyan |
| 79 | + - icon: fontawesome/brands/linkedin |
| 80 | + link: https://linkedin.com/in/shadilam |
| 81 | + |
| 82 | + consent: |
| 83 | + title: Cookie consent |
| 84 | + description: >- |
| 85 | + We use cookies to recognize your repeated visits and preferences, as well |
| 86 | + as to measure the effectiveness of our documentation. |
| 87 | +
|
| 88 | + analytics: |
| 89 | + provider: google |
| 90 | + property: G-XXXXXXXXXX |
| 91 | + |
| 92 | + feedback: |
| 93 | + title: Was this page helpful? |
| 94 | + ratings: |
| 95 | + - icon: material/emoticon-happy-outline |
| 96 | + name: This page was helpful |
| 97 | + data: 1 |
| 98 | + note: Thanks for your feedback! |
| 99 | + - icon: material/emoticon-sad-outline |
| 100 | + name: This page could be improved |
| 101 | + data: 0 |
| 102 | + note: >- |
| 103 | + Thanks for your feedback! Help us improve this page using our |
| 104 | + <a href="..." target="_blank" rel="noopener">feedback form</a>. |
| 105 | +
|
| 106 | +markdown_extensions: |
| 107 | + - abbr |
| 108 | + - admonition |
| 109 | + - attr_list |
| 110 | + - def_list |
| 111 | + - footnotes |
| 112 | + - md_in_html |
| 113 | + - toc: |
| 114 | + permalink: true |
| 115 | + - tables |
| 116 | + - pymdownx.arithmatex: |
| 117 | + generic: true |
| 118 | + - pymdownx.betterem: |
| 119 | + smart_enable: all |
| 120 | + - pymdownx.caret |
| 121 | + - pymdownx.critic |
| 122 | + - pymdownx.details |
| 123 | + - pymdownx.emoji: |
| 124 | + emoji_index: !!python/name:material.extensions.emoji.twemoji |
| 125 | + emoji_generator: !!python/name:material.extensions.emoji.to_svg |
| 126 | + - pymdownx.highlight: |
| 127 | + anchor_linenums: true |
| 128 | + line_spans: __span |
| 129 | + pygments_lang_class: true |
| 130 | + - pymdownx.inlinehilite |
| 131 | + - pymdownx.keys |
| 132 | + - pymdownx.magiclink: |
| 133 | + - pymdownx.mark |
| 134 | + - pymdownx.smartsymbols |
| 135 | + - pymdownx.snippets: |
| 136 | + check_paths: true |
| 137 | + - pymdownx.superfences: |
| 138 | + custom_fences: |
| 139 | + - name: mermaid |
| 140 | + class: mermaid |
| 141 | + format: !!python/name:pymdownx.superfences.fence_code_format |
| 142 | + - pymdownx.tabbed: |
| 143 | + alternate_style: true |
| 144 | + - pymdownx.tasklist: |
| 145 | + custom_checkbox: true |
| 146 | + - pymdownx.tilde |
0 commit comments