/ mkdocs.yml
mkdocs.yml
 1  site_name: f(x) Protocol SDK Documentation
 2  site_description: Complete documentation for the f(x) Protocol Python SDK
 3  site_author: Christopher Stampar
 4  
 5  repo_name: chrisstampar/fx-sdk
 6  repo_url: https://github.com/chrisstampar/fx-sdk
 7  edit_uri: edit/main/docs/
 8  
 9  theme:
10    name: material
11    palette:
12      - scheme: default
13        primary: blue
14        accent: blue
15        toggle:
16          icon: material/brightness-7
17          name: Switch to dark mode
18      - scheme: slate
19        primary: blue
20        accent: blue
21        toggle:
22          icon: material/brightness-4
23          name: Switch to light mode
24  
25  nav:
26    - Home: index.md
27    - Documentation: Documentation.md
28  
29  markdown_extensions:
30    - pymdownx.highlight:
31        anchor_linenums: true
32    - pymdownx.inlinehilite
33    - pymdownx.snippets
34    - pymdownx.superfences
35    - toc:
36        permalink: true
37