forked from nitya/azure-ai-rag-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
121 lines (111 loc) · 3.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -----------------------------
# Material Theme Configuration
# ------------------------------
# red, pink, purple, deep purple, indigo,
# blue, light blue, cyan, teal, green, light green,
# lime, yellow, amber, orange, deep orange, brown,
# grey, blue grey , black, white
# primary: pink # teal
# accent: indigo
#
# *** FONT ***
# Guide: https://squidfunk.github.io/mkdocs-material/setup/changing-the-fonts/?h=fonts
# Google Fonts Supported: https://fonts.google.com/
#
# *** BLOG ***
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-a-blog/
# ---------------------------------
# Project information .........................................
site_name: "RAG Chat App on Azure AI Foundry"
site_url: https://nitya.github.io/azure-ai-rag-workshop
site_author: Nitya Narasimhan
site_description: >-
Learn to buid, evaluate, and deploy, a RAG-based chat app on Azure AI Foundry
# Repository ..................................................
repo_name: nitya/azure-ai-rag-workshop
repo_url: https://github.com/nitya/azure-ai-rag-workshop
# Copyright ...................................................
copyright: >
Copyright © 2024 - present Nitya Narasimhan
# Configuration ...............................................
theme:
name: material
font:
code: Roboto Mono #Monospaced
text: Roboto #Regular
logo: img/logo.svg
language: en
# Theme Modes ...............................................
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: pink
toggle:
icon: material/brightness-2
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
accent: pink
toggle:
icon: material/brightness-4
name: Switch to system preference
# Theme Features ...............................................
features:
- navigation.instant
- navigation.expand # sidebar collapsible sections open
- navigation.instant.progress # load progress indicator
- navigation.tracking # tracks anchor tags in URL
- navigation.tabs # tabbed on desktop, single in mobile
- navigation.tabs.sticky # tabs stick when scrolling downtheme:
- navigation.path # add breadcrumbs
- navigation.indexes # default index.md in folder is section page
- navigation.top
- toc.follow
- navigation.footer
- content.code.copy # allow copy-paste from codeblocks
- content.tabs.link # Ensures site-wide switch to same tab name
# Extras ...............................................
extra:
generator: false
# Plugins ...............................................
plugins:
- search
- markmap:
base_path: markmaps
encoding: utf-8
file_extension: .mm.md
# Extensions ...............................................
markdown_extensions:
- abbr
- admonition
- attr_list
- toc:
permalink: true
toc_depth: 3
- pymdownx.details
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
auto_title: true
linenums: true
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
# Navigation ...............................................
nav: