-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yml
56 lines (55 loc) · 1.57 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
site_name: PyTabular
site_description: "Connect to your Tabular models in Python!"
site_url: https://curts0.github.io/PyTabular/
docs_dir: docs
repo_name: Curts0/PyTabular
repo_url: https://github.com/Curts0/PyTabular
nav:
- Home: README.md
- Main Tabular Class: Tabular.md
- Query Model: query.md
- Refresh Model: refresh.md
- PyObject Reference:
- PyObjects: PyObjects.md
- PyObject: PyObject.md
- PyTables: PyTables.md
- PyTable: PyTable.md
- PyColumns: PyColumns.md
- PyColumn: PyColumn.md
- PyPartitions: PyPartitions.md
- PyPartition: PyPartition.md
- PyMeasures: PyMeasures.md
- PyMeasure: PyMeasure.md
- Misc. File Reference:
- tabular_editor: tabular_editor.md
- best_practice_analyzer: best_practice_analyzer.md
- pbi_helper: pbi_helper.md
- logic_utils: logic_utils.md
- Running Traces: tabular_tracing.md
- Documenting Model: document.md
- Contributing: CONTRIBUTING.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed
- admonition
theme:
name: "material"
features:
- content.code.annotate
plugins:
- search
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://pandas.pydata.org/docs/objects.inv
options:
docstring_style: google
show_submodules: true
show_root_full_path: false
members_order: source