-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
101 lines (89 loc) · 2.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
site_name: Midas Grillage Add-in
site_description: Documentation for Midas Grillage Add-in
site_author: Vivek Patel
site_url: https://nodesautomations.github.io/midas-grillageaddin
# Copyright
copyright: 'Copyright © 2018 - 2020 Nodes Automations'
# Configuration
theme:
name: material
custom_dir: 'theme'
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
feature:
tabs: false
palette:
primary: indigo
accent: indigo
logo:
icon: 'home'
font:
text: Roboto
code: Roboto Mono
# Customization
extra:
social:
- type: globe
link: https://www.nodesautomations.com
- type: youtube
link: https://www.youtube.com/channel/UCnrjW31os9P6_MtSZXt6o-g
- type: linkedin
link: https://www.linkedin.com/in/vivekpatel-nodesautomations/
- type: envelope
link: mailto:[email protected]
# Extensions
markdown_extensions:
- attr_list # For Image Resize
- markdown.extensions.admonition # For Block Style
- markdown.extensions.codehilite: # code syntax Highlighting
guess_lang: false
linenums: true
- pymdownx.caret # super Script
- pymdownx.critic # enables the tracking of changes (additions, deletions and comments) on documents
- pymdownx.inlinehilite # inline code highlighting
- pymdownx.mark #Mark adds the ability to insert <mark></mark> tags for highlighting
- pymdownx.magiclink # auto-linking HTTP, FTP and email links.
- pymdownx.tasklist # adds GFM style task lists.
- toc:
permalink: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
extra_css:
- 'stylesheets/extra.css'
- https://unpkg.com/[email protected]/dist/mermaid.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
# Plugins
plugins:
- search
- minify:
minify_html: true
nav:
- Home: index.md
- Getting Started : getting-started.md
- Ribbon : excel/ribbon.md
- Geometry : excel/geometry.md
- Properties : excel/properties.md
- Dead Loads : excel/dead-loads.md
- Live Loads : excel/live-loads.md
- Load Combination : excel/load-combinations.md
- Examples :
- Basic : examples/basic.md
- Skew : examples/skew.md
- Tapered : examples/tapered.md
- Curvature : examples/curvature.md
- Extra Nodes : examples/extra-nodes.md
- FAQ : faq.md
- Links : links.md
use_directory_urls: false