-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
76 lines (75 loc) · 2.26 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
site_name: Nestor
site_url: !ENV MKDOCS_SITE_URL
repo_url: !ENV MKDOCS_REPO_URL
site_description: "Quantifying tacit human knowledge for Smart Manufacturing Maintenance, for maintnenance-based investigatory analysis"
site_author: "Rachael Sexton"
nav:
- Home: "README.md"
- License: "LICENSE.md"
- Getting Started:
- "Install & Setup": "getting-started.md"
- Motivation: "motivation.md"
- Workflow: "workflow.md"
- User Interfaces: "gui-links.md"
- Examples:
- 'examples/index.md'
- "Survival Analysis": "examples/survival-analysis/survival-analysis.ipynb"
- Named Entity Recognition:
- Primer - IOB Format: "examples/named-entities/01-BIO-format.ipynb"
- NLTK: "examples/named-entities/02-NER-example-NLTK.ipynb"
- SpaCy: "examples/named-entities/03-NER-example-Spacy.ipynb"
- API Reference:
- Nestor Configuration: "nestor/settings.md"
- TLP - Assisted NLP: "nestor/keyword.md"
# - tagtrees: "nestor/tagtrees.md"
- TLP - Datasets: "nestor/datasets.md"
theme:
name: "material"
favicon: "media/favicon.png"
logo: "media/icon.png"
palette:
primary: "blue grey"
accent : "orange"
features:
- navigation.indexes
plugins:
- search
- mknotebooks
- mkdocstrings:
watch:
- nestor
handlers:
python:
rendering:
show_root_heading: true
# - pdf-export:
# combined: true
- with-pdf:
# render_js: true
cover: true
cover_subtitle: "Toolkit Documentation"
toc_level: 2
ordered_chapter_level: 2
enabled_if_env: ENABLE_PDF_EXPORT
output_path: 'pdf/nestor-documentation.pdf'
# exclude_pages:
# - 'about/templates/'
- mermaid2
- bibtex:
bib_file: "docs/biblio.bib"
cite_style: "pandoc"
extra_css:
- "https://pages.nist.gov/nist-header-footer/css/nist-combined.css"
- css/mkdocstrings.css
extra_javascript:
- "https://unpkg.com/mermaid/dist/mermaid.min.js"
- "https://pages.nist.gov/nist-header-footer/js/jquery-1.9.0.min.js"
- "https://pages.nist.gov/nist-header-footer/js/nist-header-footer.js"
site_dir: !ENV MKDOCS_SITE_DIR
markdown_extensions:
- footnotes
- pymdownx.superfences
- pymdownx.arithmatex
- def_list
- toc:
permalink: "🔗"