forked from danny-avila/LibreChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
128 lines (116 loc) · 3.25 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
122
123
124
125
126
127
128
# Project information
site_name: LibreChat
# Repository
repo_name: danny-avila/LibreChat
repo_url: https://github.com/danny-avila/LibreChat
#edit_uri: ''
edit_uri: blob/main/docs/
#set use_directory_urls to false to make the HTML embed use the same relative paths as in GitHub
use_directory_urls: false
theme:
name: material
logo: assets/LibreChat.svg
favicon: assets/favicon_package/favicon-32x32.png
palette:
# Palette toggle for dark mode
- scheme: slate
primary: cyan
accent: purple
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
primary: cyan
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
features:
- header.autohide
- navigation.tabs
- navigation.tabs.sticky
- content.action.edit
- content.code.copy
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.expand
#- navigation.prune
- navigation.indexes
- navigation.top
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.details
- pymdownx.superfences
- pymdownx.critic
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.keys
- attr_list
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
plugins:
- search
# - pub-debugger # <- Uncomment to enable a general purpose mkdocs debugger
- mkdocs-nav-weight:
# https://github.com/shu307/mkdocs-nav-weight?tab=readme-ov-file
section_renamed: true # If true, section name will use the title of its index instead of the folder name.
index_weight: -10
warning: true # Controls whether to send a Warning when invalid values are detected in markdown metadata
reverse: false # If true, sort nav by weight from largest to smallest.
headless_included: false
- pub-social:
# https://github.com/mkusz/mkdocs-publisher
og:
enabled: true
locale: en_us
twitter:
enabled: true
- exclude:
# https://github.com/apenwarr/mkdocs-exclude
glob:
- dev/* # <- exclude the docs/dev folder from the docs
- "*.tmp"
- "*.pdf"
- "*.gz"
regex:
- '.*\.(tmp|bin|tar)$'
extra:
social:
- icon: fontawesome/brands/discord
link: https://discord.librechat.ai
name: Discord
- icon: fontawesome/brands/github
link: https://librechat.ai
name: GitHub
- icon: fontawesome/brands/youtube
link: https://yt.librechat.ai
name: YouTube
- icon: fontawesome/brands/linkedin
link: https://linkedin.librechat.ai
name: LinkedIn
- icon: fontawesome/solid/feather
link: https://demo.librechat.cfd
name: Demo
- icon: fontawesome/solid/face-grin-beam
link: https://hf.librechat.ai
name: Hugging Face
copyright:
© 2024 <a href="https://librechat.ai/" target="_blank" rel="noopener">LibreChat</a>