This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
94 lines (82 loc) · 1.97 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
# Project information
site_name: Piston-CLI
site_description: Piston CLI, a universal shell supporting code highlighting, files, and interpretation without the need to download a language.
site_url: https://shivansh-007.github.io/piston-cli/
# Repository
repo_name: Shivansh-007/piston-cli/
repo_url: https://github.com/Shivansh-007/piston-cli/
edit_uri: "edit/main/docs/"
# Copyright
copyright: Copyright © 2021 Shivansh-007
# Dev Configuration
dev_addr: 127.0.0.1:8008
# Configuration
theme:
name: material
locale: en
# Colorscheme for the docs
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
# Enabled mkdocs features for the site
features:
- navigation.top
- navigation.instant
- search.suggest
- search.highlight
icon:
repo: fontawesome/brands/github-alt
logo: assets/logo.png
favicon: assets/favicon.png
language: en
# Plugins
plugins:
- search
- markdownextradata:
data: data
# Page tree
nav:
- Home: index.md
# Extensions
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format ''
- pymdownx.tabbed
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/Piston-CLI/piston-cli
- icon: fontawesome/brands/discord
link: https://discord.gg/c7dZ4zdGQT
# Custom css for the site
extra_css:
- css/termynal.css
- css/custom.css
# Custom javascript for the site
extra_javascript:
- https://unpkg.com/mermaid@8.4.6/dist/mermaid.min.js
- js/termynal.js
- js/custom.js