forked from Embarcadero/BoldForDelphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
142 lines (136 loc) · 4.42 KB
/
mkdocs.yml
File metadata and controls
142 lines (136 loc) · 4.42 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
site_name: Bold for Delphi
site_description: Documentation for Bold for Delphi - Model-Driven Architecture (MDA) and ORM Framework
site_url: https://bero.github.io/BoldForDelphi/
repo_url: https://github.com/bero/BoldForDelphi
repo_name: bero/BoldForDelphi
edit_uri: edit/develop/docs/
strict: true
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.indexes # Section index pages (folder/index.md)
- navigation.top # Back to top button
- navigation.tracking # URL updates with anchor
- toc.follow # TOC follows scroll position
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
plugins:
- search:
lang: en
separator: '[\\s\\-]+'
- git-revision-date-localized:
type: datetime
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- tables
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- First Application: getting-started/first-app.md
- Core Concepts:
- concepts/index.md
- Object Space: concepts/object-space.md
- OCL Queries: concepts/ocl.md
- Derived Attributes: concepts/derived-attributes.md
- Persistence: concepts/persistence.md
- Subscriptions: concepts/subscriptions.md
- Logging: concepts/logging.md
- API Reference:
- classes/index.md
- Core Classes:
- TBoldElement: classes/TBoldElement.md
- TBoldSystem: classes/TBoldSystem.md
- TBoldObject: classes/TBoldObject.md
- TBoldObjectList: classes/TBoldObjectList.md
- TBoldObjectId: classes/TBoldObjectId.md
- Members:
- TBoldMember: classes/TBoldMember.md
- TBoldAttribute: classes/TBoldAttribute.md
- TBoldObjectReference: classes/TBoldObjectReference.md
- Attribute Types:
- TBAString: classes/TBAString.md
- TBAInteger: classes/TBAInteger.md
- TBAFloat: classes/TBAFloat.md
- TBACurrency: classes/TBACurrency.md
- TBAMoment: classes/TBAMoment.md
- TBABoolean: classes/TBABoolean.md
- TBABlob: classes/TBABlob.md
- Handles:
- TBoldSystemHandle: classes/TBoldSystemHandle.md
- TBoldListHandle: classes/TBoldListHandle.md
- TBoldExpressionHandle: classes/TBoldExpressionHandle.md
- TBoldPersistenceHandle: classes/TBoldPersistenceHandle.md
- Subscription & Derivation:
- TBoldPublisher: classes/TBoldPublisher.md
- TBoldSubscriber: classes/TBoldSubscriber.md
- TBoldPassthroughSubscriber: classes/TBoldPassthroughSubscriber.md
- TBoldAbstractDeriver: classes/TBoldAbstractDeriver.md
- Runtime Type Info:
- TBoldSystemTypeInfo: classes/TBoldSystemTypeInfo.md
- TBoldClassTypeInfo: classes/TBoldClassTypeInfo.md
- TBoldMemberRTInfo: classes/TBoldMemberRTInfo.md
- GUI Components:
- TBoldGrid: classes/TBoldGrid.md
- TBoldEdit: classes/TBoldEdit.md
- TBoldLabel: classes/TBoldLabel.md
- TBoldComboBox: classes/TBoldComboBox.md
- TBoldCheckBox: classes/TBoldCheckBox.md
- TBoldNavigator: classes/TBoldNavigator.md
- Utilities:
- TBoldGuard: classes/TBoldGuard.md
- Examples:
- examples/index.md
- Integrations:
- integrations/index.md
- DevExpress: integrations/devexpress.md
- Development:
- development/index.md
- Unit Testing: development/testing.md
- Codecov Setup: development/codecov.md
- Resources:
- FAQ: faq.md
- Roadmap: roadmap.md
- Changelog: changelog.md
- Contributing: contributing.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/bero/BoldForDelphi
extra_javascript:
- https://unpkg.com/mermaid@10/dist/mermaid.min.js
- javascripts/mermaid-init.js