-
Notifications
You must be signed in to change notification settings - Fork 72
/
mkdocs.yml
98 lines (91 loc) · 2.95 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
site_name: BlazorWebFormsComponents
site_description: A collection of Blazor components that emulate the web forms components of the same name
site_author: Jeffrey T. Fritz
site_url: https://fritzandfriends.github.io/BlazorWebFormsComponents/
edit_uri: edit/dev/docs/
docs_dir: docs
repo_name: FritzAndFriends/BlazorWebFormsComponents
repo_url: https://github.com/FritzAndFriends/BlazorWebFormsComponents
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/FritzAndFriends/BlazorWebFormsComponents
theme:
name: material
language: en
palette:
scheme: default
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
logo: assets/logo.png
favicon: assets/favicon.ico
include_search_page: false
search_index_only: true
extra_css:
- assets/stylesheets/extra.css
markdown_extensions:
- admonition
- codehilite
- footnotes
- markdown_include.include:
base_path: docs
- meta
- pymdownx.details
- pymdownx.tabbed
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- toc:
permalink: true
plugins:
- exclude:
glob:
- "_overrides/*"
- "Dockerfile"
- git-revision-date-localized:
type: iso_datetime
- macros
- search:
prebuild_index: python
lang:
- en
nav:
- Home: README.md
- Editor Controls:
- AdRotator: EditorControls/AdRotator.md
- Button: EditorControls/Button.md
- HiddenField: EditorControls/HiddenField.md
- HyperLink: EditorControls/HyperLink.md
- Image: EditorControls/Image.md
- ImageButton: EditorControls/ImageButton.md
- Label: EditorControls/Label.md
- LinkButton: EditorControls/LinkButton.md
- Literal: EditorControls/Literal.md
- Data Controls:
- DataList: DataControls/DataList.md
- FormView: DataControls/FormView.md
- GridView: DataControls/GridView.md
- ListView: DataControls/ListView.md
- Repeater: DataControls/Repeater.md
- Validation Controls:
- CustomValidator: ValidationControls/CustomValidator.md
- RegularExpressionValidator: ValidationControls/RegularExpressionValidator.md
- RequiredFieldValidator: ValidationControls/RequiredFieldValidator.md
- ValidationSummary: ValidationControls/ValidationSummary.md
- Navigation Controls:
- TreeView: NavigationControls/TreeView.md
- Utility Features:
- Databinder: UtilityFeatures/Databinder.md
- ViewState: UtilityFeatures/ViewState.md
- Migration:
- Getting started: Migration/readme.md
- Migration Strategies: Migration/Strategies.md
- Custom Controls: Migration/Custom-Controls.md
- Master Pages: Migration/MasterPages.md
- .NET Standard to the Rescue: Migration/NET-Standard.md
- User Controls: Migration/User-Controls.md
- Web Forms Application Migration Readiness: Migration/migration_readiness.md