-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
40 lines (40 loc) · 948 Bytes
/
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
site_name: EvenStore Python GRPC
site_description: A Python client to interact with EventStore via GRPC
site_url: https://stefanondisponibile.github.io/eventstore_grpc/
repo_url: https://github.com/stefanondisponibile/eventstore_grpc
theme:
name: material
palette:
scheme: default
primary: green
icon:
repo: fontawesome/brands/github
features:
- content.code.annotate
- content.code.copy
- navigation.path
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
extra_css:
- css/termynal.css
extra_javascript:
- js/termynal.js
- js/custom.js