-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
68 lines (68 loc) · 2.18 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
site_name: Numberscope
site_url: 'https://numberscope.colorado.edu/doc'
nav:
- Overview: README.md
- User Guide:
- Introduction: doc/user_guide.md
- ... | src/visualizers-workbench/*
- ... | flat | src/visualizers/*
- Extending:
- doc/extending.md
- doc/running-from-source.md
- doc/making-a-visualizer.md
- Contributing:
- CONTRIBUTING.md
- doc/onboarding.md
- doc/working-with-pm.md
- doc/working-with-git-and-github.md
- doc/gitting-it-right.md
- doc/code-principles.md
- doc/code-style.md
- doc/pull-request-checklist.md
- doc/visual-studio-code-setup.md
- Internal code and APIs:
- doc/behind-the-scenes.md
- doc/working-with-bigints.md
- ... | flat | src/shared/*
- Other Information:
- ... | flat | doc/*.md
docs_dir: doc
site_dir: dist/doc
theme:
name: readthedocs
custom_dir: doc_theme/
prev_next_buttons_location: both
sticky_navigation: false
extra_css: [css/coordinate.css, css/override.css]
extra_javascript:
- js/scroll_navigation.js
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
plugins:
awesome-pages:
collapse_single_pages: true
filename: mkdocs-index.yml
search: {}
semiliterate:
exclude_extensions:
- '.jpg'
- '.ttf'
- '.ico'
- '.spec.ts'
- 'LICENSE.md'
ignore_folders: [node_modules, dist, coverage, '.venv', '.git']
ignore_hidden: false
include_extensions: ['.png', 'math.ts', '.yml']
extract_on_copy: true
extract_standard_markdown:
terminate: '<!-- CUT HERE -->'
merge_docs_dir: false
semiliterate:
- pattern: '\.ts' # Standard in-code markup
extract:
start: '^\s*/\*\*+\W?md\b' # Opening like /** md
stop: '^\s*\*\*/\s*$' # closing **/ by itself on a line
- pattern: '[.](.*).generator$'
destination: '\1'
markdown_extensions:
- pymdownx.superfences
- mdx_math