source: CIVL/mkdocs.yaml@ 6b26bbb

1.23 2.0 main
Last change on this file since 6b26bbb was 135e8cf, checked in by Youngjun Lee <youngjunlee7@…>, 3 weeks ago

Initial Markdown documents

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[135e8cf]1site_name: CIVL Documentation
2repo_url: https://github.com/verified-software-lab/civl
3repo_name: verified-software-lab/civl
4
5theme:
6 name: material
7 icon:
8 repo: fontawesome/brands/github
9 font:
10 text: Roboto
11 code: Roboto Mono
12 features:
13 - content.code.copy
14 - navigation.footer
15 - search.suggest
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 # Palette toggle for light mode
23 - media: "(prefers-color-scheme: light)"
24 scheme: default
25 primary: indigo
26 toggle:
27 icon: material/brightness-1
28 name: Switch to dark mode
29 # Palette toggle for dark mode
30 - media: "(prefers-color-scheme: dark)"
31 scheme: slate
32 primary: black
33 toggle:
34 icon: material/brightness-3
35 name: Switch to system preference
36
37docs_dir: docs
38
39nav:
40 - Home: index.md
41 - Introduction: introduction.md
42 - CIVL-C Fundamentals: fundamentals.md
43 - Language Manual: language.md
44 - Libraries: libraries.md
45 - Command Line Interface: cli.md
46 - Examples: examples.md
47 - A Challenge Exercise for Twente: challenge.md
48 - Developer Guide: dev/index.md
49
50plugins:
51 - search
52 - typeset
53
54markdown_extensions:
55 - attr_list
56 - smarty
57 - admonition
58 - tables
59 - fenced_code
60 - toc:
61 permalink: true
62 - pymdownx.highlight:
63 anchor_linenums: true
64 line_spans: __span
65 pygments_lang_class: true
66 - pymdownx.arithmatex:
67 generic: true
68 - pymdownx.details
69 - pymdownx.inlinehilite
70 - pymdownx.snippets
71 - pymdownx.superfences
72 - pymdownx.blocks.caption
73
74extra_javascript:
75 - javascripts/katex.js
76 - https://unpkg.com/katex@0/dist/katex.min.js
77 - https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
78
79extra_css:
80 - stylesheets/extra.css
81 - https://unpkg.com/katex@0/dist/katex.min.css
Note: See TracBrowser for help on using the repository browser.