@docsector/docsector-reader 3.1.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -2
- package/bin/docsector.js +1 -1
- package/package.json +10 -7
- package/src/components/DH2.vue +1 -1
- package/src/components/DH3.vue +1 -1
- package/src/components/DH4.vue +1 -1
- package/src/components/DH5.vue +1 -1
- package/src/components/DH6.vue +1 -1
- package/src/components/DMenu.vue +1 -1
- package/src/components/DPage.vue +26 -6
- package/src/components/DPageAnchor.vue +3 -9
- package/src/components/DPageMeta.vue +1 -0
- package/src/components/DPageTokens.vue +5 -5
- package/src/components/page-section-tokens.js +59 -6
- package/src/composables/useNavigator.js +45 -15
- package/src/css/app.sass +12 -0
- package/src/pages/404Page.vue +2 -2
- package/src/pages/Homepage.en-US.md +3 -3
- package/src/pages/Homepage.pt-BR.md +3 -3
- package/src/pages/guide/i18n-and-markdown.overview.en-US.md +26 -4
- package/src/pages/guide/i18n-and-markdown.overview.pt-BR.md +23 -1
- package/src/pages/guide/pages-and-routing.overview.en-US.md +11 -9
- package/src/pages/guide/pages-and-routing.overview.pt-BR.md +11 -9
- package/src/pages/guide.index.js +0 -28
- package/src/pages/manual/basic/branding.overview.en-US.md +27 -0
- package/src/pages/manual/basic/branding.overview.pt-BR.md +27 -0
- package/src/pages/manual/{components → basic}/d-menu.overview.en-US.md +11 -3
- package/src/pages/manual/{components → basic}/d-menu.overview.pt-BR.md +11 -3
- package/src/pages/manual/{components → basic}/d-page-anchor.overview.en-US.md +5 -3
- package/src/pages/manual/{components → basic}/d-page-anchor.overview.pt-BR.md +5 -3
- package/src/pages/manual/{components → basic}/d-page-meta.overview.en-US.md +10 -2
- package/src/pages/manual/{components → basic}/d-page-meta.overview.pt-BR.md +10 -2
- package/src/pages/manual/basic/edit-on-github.overview.en-US.md +26 -0
- package/src/pages/manual/basic/edit-on-github.overview.pt-BR.md +26 -0
- package/src/pages/manual/basic/previous-and-next.overview.en-US.md +17 -0
- package/src/pages/manual/basic/previous-and-next.overview.pt-BR.md +17 -0
- package/src/pages/manual/basic/search.overview.en-US.md +24 -0
- package/src/pages/manual/basic/search.overview.pt-BR.md +24 -0
- package/src/pages/manual/basic/translation-progress.overview.en-US.md +19 -0
- package/src/pages/manual/basic/translation-progress.overview.pt-BR.md +19 -0
- package/src/pages/manual/basic/version-switcher.overview.en-US.md +28 -0
- package/src/pages/manual/basic/version-switcher.overview.pt-BR.md +28 -0
- package/src/pages/manual/components/d-subpage.overview.en-US.md +2 -2
- package/src/pages/manual/components/d-subpage.overview.pt-BR.md +2 -2
- package/src/pages/manual/content/blocks/code-blocks.overview.en-US.md +55 -0
- package/src/pages/manual/content/blocks/code-blocks.overview.pt-BR.md +55 -0
- package/src/pages/manual/{components/d-page-source-code.showcase.en-US.md → content/blocks/code-blocks.showcase.en-US.md} +14 -12
- package/src/pages/manual/{components/d-page-source-code.showcase.pt-BR.md → content/blocks/code-blocks.showcase.pt-BR.md} +28 -26
- package/src/pages/manual/{components/d-page-expandable.overview.en-US.md → content/blocks/expandable.overview.en-US.md} +3 -12
- package/src/pages/manual/{components/d-page-expandable.overview.pt-BR.md → content/blocks/expandable.overview.pt-BR.md} +3 -12
- package/src/pages/manual/content/blocks/headings.overview.en-US.md +45 -0
- package/src/pages/manual/content/blocks/headings.overview.pt-BR.md +45 -0
- package/src/pages/manual/{components/d-headings.showcase.en-US.md → content/blocks/headings.showcase.en-US.md} +1 -1
- package/src/pages/manual/{components/d-headings.showcase.pt-BR.md → content/blocks/headings.showcase.pt-BR.md} +1 -1
- package/src/pages/manual/content/blocks/hints.overview.en-US.md +30 -0
- package/src/pages/manual/content/blocks/hints.overview.pt-BR.md +30 -0
- package/src/pages/manual/content/blocks/hints.showcase.en-US.md +30 -0
- package/src/pages/manual/content/blocks/hints.showcase.pt-BR.md +30 -0
- package/src/pages/manual/content/blocks/images.overview.en-US.md +16 -0
- package/src/pages/manual/content/blocks/images.overview.pt-BR.md +16 -0
- package/src/pages/manual/content/blocks/images.showcase.en-US.md +11 -0
- package/src/pages/manual/content/blocks/images.showcase.pt-BR.md +11 -0
- package/src/pages/manual/content/blocks/math-and-tex.overview.en-US.md +27 -0
- package/src/pages/manual/content/blocks/math-and-tex.overview.pt-BR.md +27 -0
- package/src/pages/manual/content/blocks/math-and-tex.showcase.en-US.md +14 -0
- package/src/pages/manual/content/blocks/math-and-tex.showcase.pt-BR.md +14 -0
- package/src/pages/manual/content/blocks/mermaid-diagrams.overview.en-US.md +22 -0
- package/src/pages/manual/content/blocks/mermaid-diagrams.overview.pt-BR.md +22 -0
- package/src/pages/manual/content/blocks/ordered-lists.overview.en-US.md +19 -0
- package/src/pages/manual/content/blocks/ordered-lists.overview.pt-BR.md +19 -0
- package/src/pages/manual/content/blocks/ordered-lists.showcase.en-US.md +21 -0
- package/src/pages/manual/content/blocks/ordered-lists.showcase.pt-BR.md +21 -0
- package/src/pages/manual/content/blocks/paragraphs.overview.en-US.md +19 -0
- package/src/pages/manual/content/blocks/paragraphs.overview.pt-BR.md +19 -0
- package/src/pages/manual/content/blocks/paragraphs.showcase.en-US.md +9 -0
- package/src/pages/manual/content/blocks/paragraphs.showcase.pt-BR.md +9 -0
- package/src/pages/manual/content/blocks/quick-links.overview.en-US.md +28 -0
- package/src/pages/manual/content/blocks/quick-links.overview.pt-BR.md +28 -0
- package/src/pages/manual/content/blocks/quick-links.showcase.en-US.md +34 -0
- package/src/pages/manual/content/blocks/quick-links.showcase.pt-BR.md +34 -0
- package/src/pages/manual/content/blocks/quotes.overview.en-US.md +24 -0
- package/src/pages/manual/content/blocks/quotes.overview.pt-BR.md +24 -0
- package/src/pages/manual/content/blocks/quotes.showcase.en-US.md +17 -0
- package/src/pages/manual/content/blocks/quotes.showcase.pt-BR.md +17 -0
- package/src/pages/manual/content/blocks/raw-html.overview.en-US.md +19 -0
- package/src/pages/manual/content/blocks/raw-html.overview.pt-BR.md +19 -0
- package/src/pages/manual/content/blocks/raw-html.showcase.en-US.md +12 -0
- package/src/pages/manual/content/blocks/raw-html.showcase.pt-BR.md +12 -0
- package/src/pages/manual/content/blocks/tables.overview.en-US.md +19 -0
- package/src/pages/manual/content/blocks/tables.overview.pt-BR.md +19 -0
- package/src/pages/manual/content/blocks/tables.showcase.en-US.md +17 -0
- package/src/pages/manual/content/blocks/tables.showcase.pt-BR.md +17 -0
- package/src/pages/manual/content/blocks/unordered-lists.overview.en-US.md +21 -0
- package/src/pages/manual/content/blocks/unordered-lists.overview.pt-BR.md +21 -0
- package/src/pages/manual/content/blocks/unordered-lists.showcase.en-US.md +24 -0
- package/src/pages/manual/content/blocks/unordered-lists.showcase.pt-BR.md +24 -0
- package/src/pages/manual/content/structures/books.overview.en-US.md +36 -0
- package/src/pages/manual/content/structures/books.overview.pt-BR.md +36 -0
- package/src/pages/manual/content/structures/page.overview.en-US.md +61 -0
- package/src/pages/manual/content/structures/page.overview.pt-BR.md +61 -0
- package/src/pages/manual/content/structures/subpage.overview.en-US.md +62 -0
- package/src/pages/manual/content/structures/subpage.overview.pt-BR.md +62 -0
- package/src/pages/manual.index.js +487 -153
- package/src/router/routes.js +1 -1
- package/src/pages/guide/alerts-and-blockquotes.overview.en-US.md +0 -65
- package/src/pages/guide/alerts-and-blockquotes.overview.pt-BR.md +0 -65
- package/src/pages/manual/components/d-headings.overview.en-US.md +0 -54
- package/src/pages/manual/components/d-headings.overview.pt-BR.md +0 -54
- package/src/pages/manual/components/d-mermaid-diagram.overview.en-US.md +0 -31
- package/src/pages/manual/components/d-mermaid-diagram.overview.pt-BR.md +0 -29
- package/src/pages/manual/components/d-page-blockquote.overview.en-US.md +0 -66
- package/src/pages/manual/components/d-page-blockquote.overview.pt-BR.md +0 -66
- package/src/pages/manual/components/d-page-blockquote.showcase.en-US.md +0 -34
- package/src/pages/manual/components/d-page-blockquote.showcase.pt-BR.md +0 -34
- package/src/pages/manual/components/d-page-section.overview.en-US.md +0 -57
- package/src/pages/manual/components/d-page-section.overview.pt-BR.md +0 -57
- package/src/pages/manual/components/d-page-section.showcase.en-US.md +0 -43
- package/src/pages/manual/components/d-page-section.showcase.pt-BR.md +0 -43
- package/src/pages/manual/components/d-page-source-code.overview.en-US.md +0 -68
- package/src/pages/manual/components/d-page-source-code.overview.pt-BR.md +0 -68
- package/src/pages/manual/components/d-page.overview.en-US.md +0 -59
- package/src/pages/manual/components/d-page.overview.pt-BR.md +0 -59
- package/src/pages/manual/components/d-page.showcase.en-US.md +0 -35
- package/src/pages/manual/components/d-page.showcase.pt-BR.md +0 -35
- package/src/pages/manual/components/q-zoom.overview.en-US.md +0 -71
- package/src/pages/manual/components/q-zoom.overview.pt-BR.md +0 -71
- package/src/pages/manual/composables/use-navigator.overview.en-US.md +0 -89
- package/src/pages/manual/composables/use-navigator.overview.pt-BR.md +0 -89
- package/src/pages/manual/store/modules.overview.en-US.md +0 -96
- package/src/pages/manual/store/modules.overview.pt-BR.md +0 -96
- /package/src/pages/manual/{components/d-page-expandable.showcase.en-US.md → content/blocks/expandable.showcase.en-US.md} +0 -0
- /package/src/pages/manual/{components/d-page-expandable.showcase.pt-BR.md → content/blocks/expandable.showcase.pt-BR.md} +0 -0
- /package/src/pages/manual/{components/d-mermaid-diagram.showcase.en-US.md → content/blocks/mermaid-diagrams.showcase.en-US.md} +0 -0
- /package/src/pages/manual/{components/d-mermaid-diagram.showcase.pt-BR.md → content/blocks/mermaid-diagrams.showcase.pt-BR.md} +0 -0
|
@@ -1,57 +1,54 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
// =========================================================================
|
|
3
|
-
//
|
|
3
|
+
// Basic
|
|
4
4
|
// =========================================================================
|
|
5
|
-
'/
|
|
5
|
+
'/basic': {
|
|
6
6
|
config: null,
|
|
7
7
|
data: {
|
|
8
|
-
'en-US': { title: '
|
|
9
|
-
'pt-BR': { title: '
|
|
8
|
+
'en-US': { title: 'Basic' },
|
|
9
|
+
'pt-BR': { title: 'Básico' }
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
12
|
|
|
13
|
-
'/
|
|
13
|
+
'/basic/d-menu': {
|
|
14
14
|
config: {
|
|
15
|
-
icon: '
|
|
16
|
-
status: '
|
|
15
|
+
icon: 'menu_open',
|
|
16
|
+
status: 'new',
|
|
17
|
+
version: 'v2.1.0',
|
|
17
18
|
meta: {
|
|
18
19
|
description: {
|
|
19
|
-
'en-US': '
|
|
20
|
-
'pt-BR': '
|
|
20
|
+
'en-US': 'Navigation Menu — Documentation of Docsector Reader',
|
|
21
|
+
'pt-BR': 'Menu de Navegação — Documentacao do Docsector Reader'
|
|
21
22
|
}
|
|
22
23
|
},
|
|
23
24
|
book: 'manual',
|
|
24
25
|
menu: {
|
|
25
|
-
|
|
26
|
-
icon: 'widgets',
|
|
27
|
-
label: 'Components'
|
|
28
|
-
},
|
|
29
|
-
subheader: '.components'
|
|
26
|
+
subheader: '.basic'
|
|
30
27
|
},
|
|
31
28
|
subpages: {
|
|
32
|
-
showcase:
|
|
29
|
+
showcase: false
|
|
33
30
|
}
|
|
34
31
|
},
|
|
35
32
|
data: {
|
|
36
|
-
'en-US': { title: '
|
|
37
|
-
'pt-BR': { title: '
|
|
33
|
+
'en-US': { title: 'Navigation Menu' },
|
|
34
|
+
'pt-BR': { title: 'Menu de Navegação' }
|
|
38
35
|
},
|
|
39
36
|
metadata: {
|
|
40
37
|
tags: {
|
|
41
|
-
'en-US': '
|
|
42
|
-
'pt-BR': '
|
|
38
|
+
'en-US': 'menu sidebar navigation search branding links tree expansion',
|
|
39
|
+
'pt-BR': 'menu lateral navegação busca branding links árvore expansão'
|
|
43
40
|
}
|
|
44
41
|
}
|
|
45
42
|
},
|
|
46
43
|
|
|
47
|
-
'/
|
|
44
|
+
'/basic/search': {
|
|
48
45
|
config: {
|
|
49
|
-
icon: '
|
|
46
|
+
icon: 'search',
|
|
50
47
|
status: 'done',
|
|
51
48
|
meta: {
|
|
52
49
|
description: {
|
|
53
|
-
'en-US': '
|
|
54
|
-
'pt-BR': '
|
|
50
|
+
'en-US': 'Search — Documentation of Docsector Reader',
|
|
51
|
+
'pt-BR': 'Busca — Documentacao do Docsector Reader'
|
|
55
52
|
}
|
|
56
53
|
},
|
|
57
54
|
book: 'manual',
|
|
@@ -61,58 +58,274 @@ export default {
|
|
|
61
58
|
}
|
|
62
59
|
},
|
|
63
60
|
data: {
|
|
64
|
-
'en-US': { title: '
|
|
65
|
-
'pt-BR': { title: '
|
|
61
|
+
'en-US': { title: 'Search' },
|
|
62
|
+
'pt-BR': { title: 'Busca' }
|
|
66
63
|
},
|
|
67
64
|
metadata: {
|
|
68
65
|
tags: {
|
|
69
|
-
'en-US': '
|
|
70
|
-
'pt-BR': '
|
|
66
|
+
'en-US': 'search sidebar filter tags markdown locale fallback results',
|
|
67
|
+
'pt-BR': 'busca lateral filtro tags markdown locale fallback resultados'
|
|
71
68
|
}
|
|
72
69
|
}
|
|
73
70
|
},
|
|
74
71
|
|
|
75
|
-
'/
|
|
72
|
+
'/basic/branding': {
|
|
76
73
|
config: {
|
|
77
|
-
icon: '
|
|
74
|
+
icon: 'branding_watermark',
|
|
78
75
|
status: 'done',
|
|
79
76
|
meta: {
|
|
80
77
|
description: {
|
|
81
|
-
'en-US': '
|
|
82
|
-
'pt-BR': '
|
|
78
|
+
'en-US': 'Branding — Documentation of Docsector Reader',
|
|
79
|
+
'pt-BR': 'Branding — Documentacao do Docsector Reader'
|
|
83
80
|
}
|
|
84
81
|
},
|
|
85
82
|
book: 'manual',
|
|
86
|
-
menu: {
|
|
87
|
-
|
|
83
|
+
menu: {},
|
|
84
|
+
subpages: {
|
|
85
|
+
showcase: false
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
data: {
|
|
89
|
+
'en-US': { title: 'Branding' },
|
|
90
|
+
'pt-BR': { title: 'Branding' }
|
|
91
|
+
},
|
|
92
|
+
metadata: {
|
|
93
|
+
tags: {
|
|
94
|
+
'en-US': 'branding logo project name links changelog roadmap sponsor menu',
|
|
95
|
+
'pt-BR': 'branding logo nome do projeto links changelog roadmap sponsor menu'
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
'/basic/version-switcher': {
|
|
101
|
+
config: {
|
|
102
|
+
icon: 'swap_horiz',
|
|
103
|
+
status: 'done',
|
|
104
|
+
meta: {
|
|
105
|
+
description: {
|
|
106
|
+
'en-US': 'Version Switcher — Documentation of Docsector Reader',
|
|
107
|
+
'pt-BR': 'Seletor de Versão — Documentacao do Docsector Reader'
|
|
108
|
+
}
|
|
88
109
|
},
|
|
110
|
+
book: 'manual',
|
|
111
|
+
menu: {},
|
|
89
112
|
subpages: {
|
|
90
|
-
showcase:
|
|
113
|
+
showcase: false
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
data: {
|
|
117
|
+
'en-US': { title: 'Version Switcher' },
|
|
118
|
+
'pt-BR': { title: 'Seletor de Versão' }
|
|
119
|
+
},
|
|
120
|
+
metadata: {
|
|
121
|
+
tags: {
|
|
122
|
+
'en-US': 'version switcher releases draft deprecated archived routes selector badge',
|
|
123
|
+
'pt-BR': 'versão seletor releases draft deprecated rotas arquivadas badge'
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
|
|
128
|
+
'/basic/d-page-anchor': {
|
|
129
|
+
config: {
|
|
130
|
+
icon: 'account_tree',
|
|
131
|
+
status: 'done',
|
|
132
|
+
meta: {
|
|
133
|
+
description: {
|
|
134
|
+
'en-US': 'Table of Contents — Documentation of Docsector Reader',
|
|
135
|
+
'pt-BR': 'Índice da Página — Documentacao do Docsector Reader'
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
book: 'manual',
|
|
139
|
+
menu: {},
|
|
140
|
+
subpages: {
|
|
141
|
+
showcase: false
|
|
91
142
|
}
|
|
92
143
|
},
|
|
93
144
|
data: {
|
|
94
|
-
'en-US': { title: '
|
|
95
|
-
'pt-BR': { title: '
|
|
145
|
+
'en-US': { title: 'Table of Contents' },
|
|
146
|
+
'pt-BR': { title: 'Índice da Página' }
|
|
96
147
|
},
|
|
97
148
|
metadata: {
|
|
98
149
|
tags: {
|
|
99
|
-
'en-US': '
|
|
100
|
-
'pt-BR': '
|
|
150
|
+
'en-US': 'anchor toc table contents tree drawer navigation scroll',
|
|
151
|
+
'pt-BR': 'âncora toc índice conteúdo árvore drawer navegação scroll'
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
|
|
156
|
+
'/basic/d-page-meta': {
|
|
157
|
+
config: {
|
|
158
|
+
icon: 'info',
|
|
159
|
+
status: 'done',
|
|
160
|
+
meta: {
|
|
161
|
+
description: {
|
|
162
|
+
'en-US': 'Page Footer — Documentation of Docsector Reader',
|
|
163
|
+
'pt-BR': 'Rodapé da Página — Documentacao do Docsector Reader'
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
book: 'manual',
|
|
167
|
+
menu: {},
|
|
168
|
+
subpages: {
|
|
169
|
+
showcase: false
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
data: {
|
|
173
|
+
'en-US': { title: 'Page Footer' },
|
|
174
|
+
'pt-BR': { title: 'Rodapé da Página' }
|
|
175
|
+
},
|
|
176
|
+
metadata: {
|
|
177
|
+
tags: {
|
|
178
|
+
'en-US': 'meta footer edit github translation progress prev next navigation',
|
|
179
|
+
'pt-BR': 'meta rodapé editar github tradução progresso anterior próximo navegação'
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
|
|
184
|
+
'/basic/edit-on-github': {
|
|
185
|
+
config: {
|
|
186
|
+
icon: 'edit_note',
|
|
187
|
+
status: 'done',
|
|
188
|
+
meta: {
|
|
189
|
+
description: {
|
|
190
|
+
'en-US': 'Edit on GitHub — Documentation of Docsector Reader',
|
|
191
|
+
'pt-BR': 'Editar no GitHub — Documentacao do Docsector Reader'
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
book: 'manual',
|
|
195
|
+
menu: {},
|
|
196
|
+
subpages: {
|
|
197
|
+
showcase: false
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
data: {
|
|
201
|
+
'en-US': { title: 'Edit on GitHub' },
|
|
202
|
+
'pt-BR': { title: 'Editar no GitHub' }
|
|
203
|
+
},
|
|
204
|
+
metadata: {
|
|
205
|
+
tags: {
|
|
206
|
+
'en-US': 'edit github source markdown status draft empty done footer',
|
|
207
|
+
'pt-BR': 'editar github fonte markdown status draft empty done rodapé'
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
'/basic/translation-progress': {
|
|
213
|
+
config: {
|
|
214
|
+
icon: 'translate',
|
|
215
|
+
status: 'done',
|
|
216
|
+
meta: {
|
|
217
|
+
description: {
|
|
218
|
+
'en-US': 'Translation Progress — Documentation of Docsector Reader',
|
|
219
|
+
'pt-BR': 'Progresso de Tradução — Documentacao do Docsector Reader'
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
book: 'manual',
|
|
223
|
+
menu: {},
|
|
224
|
+
subpages: {
|
|
225
|
+
showcase: false
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
data: {
|
|
229
|
+
'en-US': { title: 'Translation Progress' },
|
|
230
|
+
'pt-BR': { title: 'Progresso de Tradução' }
|
|
231
|
+
},
|
|
232
|
+
metadata: {
|
|
233
|
+
tags: {
|
|
234
|
+
'en-US': 'translation progress locales sections i18n footer chips',
|
|
235
|
+
'pt-BR': 'tradução progresso locales seções i18n rodapé chips'
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
|
|
240
|
+
'/basic/previous-and-next': {
|
|
241
|
+
config: {
|
|
242
|
+
icon: 'last_page',
|
|
243
|
+
status: 'done',
|
|
244
|
+
meta: {
|
|
245
|
+
description: {
|
|
246
|
+
'en-US': 'Previous & Next — Documentation of Docsector Reader',
|
|
247
|
+
'pt-BR': 'Anterior e Próximo — Documentacao do Docsector Reader'
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
book: 'manual',
|
|
251
|
+
menu: {},
|
|
252
|
+
subpages: {
|
|
253
|
+
showcase: false
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
data: {
|
|
257
|
+
'en-US': { title: 'Previous & Next' },
|
|
258
|
+
'pt-BR': { title: 'Anterior e Próximo' }
|
|
259
|
+
},
|
|
260
|
+
metadata: {
|
|
261
|
+
tags: {
|
|
262
|
+
'en-US': 'previous next navigation adjacent routes footer sequence',
|
|
263
|
+
'pt-BR': 'anterior próximo navegação rotas adjacentes rodapé sequência'
|
|
101
264
|
}
|
|
102
265
|
}
|
|
103
266
|
},
|
|
104
267
|
|
|
105
268
|
// =========================================================================
|
|
106
|
-
//
|
|
269
|
+
// Content
|
|
107
270
|
// =========================================================================
|
|
108
|
-
'/
|
|
271
|
+
'/content': {
|
|
272
|
+
config: null,
|
|
273
|
+
data: {
|
|
274
|
+
'en-US': { title: 'Content' },
|
|
275
|
+
'pt-BR': { title: 'Conteúdo' }
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
|
|
279
|
+
'/content/blocks': {
|
|
280
|
+
config: null,
|
|
281
|
+
data: {
|
|
282
|
+
'en-US': { title: 'Blocks' },
|
|
283
|
+
'pt-BR': { title: 'Blocos' }
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
|
|
287
|
+
'/content/blocks/paragraphs': {
|
|
288
|
+
config: {
|
|
289
|
+
icon: 'subject',
|
|
290
|
+
status: 'done',
|
|
291
|
+
meta: {
|
|
292
|
+
description: {
|
|
293
|
+
'en-US': 'Paragraphs — Documentation of Docsector Reader',
|
|
294
|
+
'pt-BR': 'Parágrafos — Documentacao do Docsector Reader'
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
book: 'manual',
|
|
298
|
+
menu: {
|
|
299
|
+
header: {
|
|
300
|
+
icon: 'notes',
|
|
301
|
+
label: 'Content'
|
|
302
|
+
},
|
|
303
|
+
subheader: '.content.blocks'
|
|
304
|
+
},
|
|
305
|
+
subpages: {
|
|
306
|
+
showcase: true
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
data: {
|
|
310
|
+
'en-US': { title: 'Paragraphs' },
|
|
311
|
+
'pt-BR': { title: 'Parágrafos' }
|
|
312
|
+
},
|
|
313
|
+
metadata: {
|
|
314
|
+
tags: {
|
|
315
|
+
'en-US': 'paragraph text prose emphasis bold italic links inline code markdown',
|
|
316
|
+
'pt-BR': 'parágrafo texto prosa ênfase negrito itálico links código inline markdown'
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
|
|
321
|
+
'/content/blocks/headings': {
|
|
109
322
|
config: {
|
|
110
323
|
icon: 'title',
|
|
111
324
|
status: 'done',
|
|
112
325
|
meta: {
|
|
113
326
|
description: {
|
|
114
|
-
'en-US': '
|
|
115
|
-
'pt-BR': '
|
|
327
|
+
'en-US': 'Headings — Documentation of Docsector Reader',
|
|
328
|
+
'pt-BR': 'Títulos — Documentacao do Docsector Reader'
|
|
116
329
|
}
|
|
117
330
|
},
|
|
118
331
|
book: 'manual',
|
|
@@ -122,8 +335,8 @@ export default {
|
|
|
122
335
|
}
|
|
123
336
|
},
|
|
124
337
|
data: {
|
|
125
|
-
'en-US': { title: '
|
|
126
|
-
'pt-BR': { title: '
|
|
338
|
+
'en-US': { title: 'Headings' },
|
|
339
|
+
'pt-BR': { title: 'Títulos' }
|
|
127
340
|
},
|
|
128
341
|
metadata: {
|
|
129
342
|
tags: {
|
|
@@ -133,14 +346,14 @@ export default {
|
|
|
133
346
|
}
|
|
134
347
|
},
|
|
135
348
|
|
|
136
|
-
'/
|
|
349
|
+
'/content/blocks/unordered-lists': {
|
|
137
350
|
config: {
|
|
138
|
-
icon: '
|
|
351
|
+
icon: 'format_list_bulleted',
|
|
139
352
|
status: 'done',
|
|
140
353
|
meta: {
|
|
141
354
|
description: {
|
|
142
|
-
'en-US': '
|
|
143
|
-
'pt-BR': '
|
|
355
|
+
'en-US': 'Unordered lists — Documentation of Docsector Reader',
|
|
356
|
+
'pt-BR': 'Listas não ordenadas — Documentacao do Docsector Reader'
|
|
144
357
|
}
|
|
145
358
|
},
|
|
146
359
|
book: 'manual',
|
|
@@ -150,25 +363,53 @@ export default {
|
|
|
150
363
|
}
|
|
151
364
|
},
|
|
152
365
|
data: {
|
|
153
|
-
'en-US': { title: '
|
|
154
|
-
'pt-BR': { title: '
|
|
366
|
+
'en-US': { title: 'Unordered lists' },
|
|
367
|
+
'pt-BR': { title: 'Listas não ordenadas' }
|
|
155
368
|
},
|
|
156
369
|
metadata: {
|
|
157
370
|
tags: {
|
|
158
|
-
'en-US': '
|
|
159
|
-
'pt-BR': '
|
|
371
|
+
'en-US': 'unordered list bullets nested markdown items',
|
|
372
|
+
'pt-BR': 'lista não ordenada marcadores aninhada markdown itens'
|
|
160
373
|
}
|
|
161
374
|
}
|
|
162
375
|
},
|
|
163
376
|
|
|
164
|
-
'/
|
|
377
|
+
'/content/blocks/ordered-lists': {
|
|
165
378
|
config: {
|
|
166
|
-
icon: '
|
|
379
|
+
icon: 'format_list_numbered',
|
|
380
|
+
status: 'done',
|
|
381
|
+
meta: {
|
|
382
|
+
description: {
|
|
383
|
+
'en-US': 'Ordered lists — Documentation of Docsector Reader',
|
|
384
|
+
'pt-BR': 'Listas ordenadas — Documentacao do Docsector Reader'
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
book: 'manual',
|
|
388
|
+
menu: {},
|
|
389
|
+
subpages: {
|
|
390
|
+
showcase: true
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
data: {
|
|
394
|
+
'en-US': { title: 'Ordered lists' },
|
|
395
|
+
'pt-BR': { title: 'Listas ordenadas' }
|
|
396
|
+
},
|
|
397
|
+
metadata: {
|
|
398
|
+
tags: {
|
|
399
|
+
'en-US': 'ordered list numbered nested markdown items',
|
|
400
|
+
'pt-BR': 'lista ordenada numerada aninhada markdown itens'
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
|
|
405
|
+
'/content/blocks/hints': {
|
|
406
|
+
config: {
|
|
407
|
+
icon: 'lightbulb',
|
|
167
408
|
status: 'done',
|
|
168
409
|
meta: {
|
|
169
410
|
description: {
|
|
170
|
-
'en-US': '
|
|
171
|
-
'pt-BR': '
|
|
411
|
+
'en-US': 'Hints — Documentation of Docsector Reader',
|
|
412
|
+
'pt-BR': 'Dicas — Documentacao do Docsector Reader'
|
|
172
413
|
}
|
|
173
414
|
},
|
|
174
415
|
book: 'manual',
|
|
@@ -178,250 +419,343 @@ export default {
|
|
|
178
419
|
}
|
|
179
420
|
},
|
|
180
421
|
data: {
|
|
181
|
-
'en-US': { title: '
|
|
182
|
-
'pt-BR': { title: '
|
|
422
|
+
'en-US': { title: 'Hints' },
|
|
423
|
+
'pt-BR': { title: 'Dicas' }
|
|
424
|
+
},
|
|
425
|
+
metadata: {
|
|
426
|
+
tags: {
|
|
427
|
+
'en-US': 'hint alerts note tip important warning caution callout blockquote',
|
|
428
|
+
'pt-BR': 'dica alertas nota tip importante aviso cautela callout blockquote'
|
|
429
|
+
}
|
|
183
430
|
}
|
|
184
431
|
},
|
|
185
432
|
|
|
186
|
-
'/
|
|
433
|
+
'/content/blocks/quotes': {
|
|
187
434
|
config: {
|
|
188
435
|
icon: 'format_quote',
|
|
189
436
|
status: 'done',
|
|
190
437
|
meta: {
|
|
191
438
|
description: {
|
|
192
|
-
'en-US': '
|
|
193
|
-
'pt-BR': '
|
|
439
|
+
'en-US': 'Quote — Documentation of Docsector Reader',
|
|
440
|
+
'pt-BR': 'Citação — Documentacao do Docsector Reader'
|
|
194
441
|
}
|
|
195
442
|
},
|
|
196
443
|
book: 'manual',
|
|
197
|
-
menu: {
|
|
198
|
-
|
|
444
|
+
menu: {},
|
|
445
|
+
subpages: {
|
|
446
|
+
showcase: true
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
data: {
|
|
450
|
+
'en-US': { title: 'Quote' },
|
|
451
|
+
'pt-BR': { title: 'Citação' }
|
|
452
|
+
},
|
|
453
|
+
metadata: {
|
|
454
|
+
tags: {
|
|
455
|
+
'en-US': 'quote blockquote citation pull quote markdown',
|
|
456
|
+
'pt-BR': 'citação blockquote quote markdown destaque'
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
|
|
461
|
+
'/content/blocks/code-blocks': {
|
|
462
|
+
config: {
|
|
463
|
+
icon: 'code',
|
|
464
|
+
status: 'done',
|
|
465
|
+
meta: {
|
|
466
|
+
description: {
|
|
467
|
+
'en-US': 'Code blocks — Documentation of Docsector Reader',
|
|
468
|
+
'pt-BR': 'Blocos de código — Documentacao do Docsector Reader'
|
|
469
|
+
}
|
|
199
470
|
},
|
|
471
|
+
book: 'manual',
|
|
472
|
+
menu: {},
|
|
200
473
|
subpages: {
|
|
201
474
|
showcase: true
|
|
202
475
|
}
|
|
203
476
|
},
|
|
204
477
|
data: {
|
|
205
|
-
'en-US': { title: '
|
|
206
|
-
'pt-BR': { title: '
|
|
478
|
+
'en-US': { title: 'Code blocks' },
|
|
479
|
+
'pt-BR': { title: 'Blocos de código' }
|
|
207
480
|
},
|
|
208
481
|
metadata: {
|
|
209
482
|
tags: {
|
|
210
|
-
'en-US': '
|
|
211
|
-
'pt-BR': '
|
|
483
|
+
'en-US': 'code syntax highlight prism php bash html copy clipboard line numbers',
|
|
484
|
+
'pt-BR': 'código sintaxe highlight prism php bash html copiar clipboard números linha'
|
|
212
485
|
}
|
|
213
486
|
}
|
|
214
487
|
},
|
|
215
488
|
|
|
216
|
-
'/
|
|
489
|
+
'/content/blocks/mermaid-diagrams': {
|
|
217
490
|
config: {
|
|
218
|
-
icon: '
|
|
491
|
+
icon: 'account_tree',
|
|
219
492
|
status: 'done',
|
|
220
493
|
meta: {
|
|
221
494
|
description: {
|
|
222
|
-
'en-US': '
|
|
223
|
-
'pt-BR': '
|
|
495
|
+
'en-US': 'Mermaid diagrams — Documentation of Docsector Reader',
|
|
496
|
+
'pt-BR': 'Diagramas Mermaid — Documentacao do Docsector Reader'
|
|
224
497
|
}
|
|
225
498
|
},
|
|
226
499
|
book: 'manual',
|
|
227
|
-
menu: {
|
|
228
|
-
|
|
500
|
+
menu: {},
|
|
501
|
+
subpages: {
|
|
502
|
+
showcase: true
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
data: {
|
|
506
|
+
'en-US': { title: 'Mermaid diagrams' },
|
|
507
|
+
'pt-BR': { title: 'Diagramas Mermaid' }
|
|
508
|
+
},
|
|
509
|
+
metadata: {
|
|
510
|
+
tags: {
|
|
511
|
+
'en-US': 'mermaid diagram flowchart sequence graph chart markdown',
|
|
512
|
+
'pt-BR': 'mermaid diagrama fluxograma sequência grafo gráfico markdown'
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
|
|
517
|
+
'/content/blocks/images': {
|
|
518
|
+
config: {
|
|
519
|
+
icon: 'image',
|
|
520
|
+
status: 'done',
|
|
521
|
+
meta: {
|
|
522
|
+
description: {
|
|
523
|
+
'en-US': 'Images — Documentation of Docsector Reader',
|
|
524
|
+
'pt-BR': 'Imagens — Documentacao do Docsector Reader'
|
|
525
|
+
}
|
|
229
526
|
},
|
|
527
|
+
book: 'manual',
|
|
528
|
+
menu: {},
|
|
230
529
|
subpages: {
|
|
231
530
|
showcase: true
|
|
232
531
|
}
|
|
233
532
|
},
|
|
234
533
|
data: {
|
|
235
|
-
'en-US': { title: '
|
|
236
|
-
'pt-BR': { title: '
|
|
534
|
+
'en-US': { title: 'Images' },
|
|
535
|
+
'pt-BR': { title: 'Imagens' }
|
|
237
536
|
},
|
|
238
537
|
metadata: {
|
|
239
538
|
tags: {
|
|
240
|
-
'en-US': '
|
|
241
|
-
'pt-BR': '
|
|
539
|
+
'en-US': 'images media markdown alt text captions zoom',
|
|
540
|
+
'pt-BR': 'imagens mídia markdown texto alternativo legendas zoom'
|
|
242
541
|
}
|
|
243
542
|
}
|
|
244
543
|
},
|
|
245
544
|
|
|
246
|
-
|
|
247
|
-
// Components — Navigation
|
|
248
|
-
// =========================================================================
|
|
249
|
-
'/components/d-menu': {
|
|
545
|
+
'/content/blocks/math-and-tex': {
|
|
250
546
|
config: {
|
|
251
|
-
icon: '
|
|
252
|
-
status: '
|
|
253
|
-
version: 'v2.1.0',
|
|
547
|
+
icon: 'functions',
|
|
548
|
+
status: 'done',
|
|
254
549
|
meta: {
|
|
255
550
|
description: {
|
|
256
|
-
'en-US': '
|
|
257
|
-
'pt-BR': '
|
|
551
|
+
'en-US': 'Math & TeX — Documentation of Docsector Reader',
|
|
552
|
+
'pt-BR': 'Math & TeX — Documentacao do Docsector Reader'
|
|
258
553
|
}
|
|
259
554
|
},
|
|
260
555
|
book: 'manual',
|
|
261
556
|
menu: {},
|
|
262
557
|
subpages: {
|
|
263
|
-
showcase:
|
|
558
|
+
showcase: true
|
|
264
559
|
}
|
|
265
560
|
},
|
|
266
561
|
data: {
|
|
267
|
-
'en-US': { title: '
|
|
268
|
-
'pt-BR': { title: '
|
|
562
|
+
'en-US': { title: 'Math & TeX' },
|
|
563
|
+
'pt-BR': { title: 'Math & TeX' }
|
|
269
564
|
},
|
|
270
565
|
metadata: {
|
|
271
566
|
tags: {
|
|
272
|
-
'en-US': '
|
|
273
|
-
'pt-BR': '
|
|
567
|
+
'en-US': 'math tex katex latex equations formulas inline display',
|
|
568
|
+
'pt-BR': 'matemática tex katex latex equações fórmulas inline display'
|
|
274
569
|
}
|
|
275
570
|
}
|
|
276
571
|
},
|
|
277
572
|
|
|
278
|
-
'/
|
|
573
|
+
'/content/blocks/expandable': {
|
|
279
574
|
config: {
|
|
280
|
-
icon: '
|
|
575
|
+
icon: 'unfold_more',
|
|
281
576
|
status: 'done',
|
|
282
577
|
meta: {
|
|
283
578
|
description: {
|
|
284
|
-
'en-US': '
|
|
285
|
-
'pt-BR': '
|
|
579
|
+
'en-US': 'Expandable — Documentation of Docsector Reader',
|
|
580
|
+
'pt-BR': 'Expansível — Documentacao do Docsector Reader'
|
|
286
581
|
}
|
|
287
582
|
},
|
|
288
583
|
book: 'manual',
|
|
289
584
|
menu: {},
|
|
290
585
|
subpages: {
|
|
291
|
-
showcase:
|
|
586
|
+
showcase: true
|
|
292
587
|
}
|
|
293
588
|
},
|
|
294
589
|
data: {
|
|
295
|
-
'en-US': { title: '
|
|
296
|
-
'pt-BR': { title: '
|
|
590
|
+
'en-US': { title: 'Expandable' },
|
|
591
|
+
'pt-BR': { title: 'Expansível' }
|
|
297
592
|
},
|
|
298
593
|
metadata: {
|
|
299
594
|
tags: {
|
|
300
|
-
'en-US': '
|
|
301
|
-
'pt-BR': '
|
|
595
|
+
'en-US': 'expandable collapsible accordion disclosure details markdown toggle',
|
|
596
|
+
'pt-BR': 'expansível colapsável acordeão detalhes markdown alternância'
|
|
302
597
|
}
|
|
303
598
|
}
|
|
304
599
|
},
|
|
305
600
|
|
|
306
|
-
'/
|
|
601
|
+
'/content/blocks/tables': {
|
|
307
602
|
config: {
|
|
308
|
-
icon: '
|
|
603
|
+
icon: 'table_chart',
|
|
309
604
|
status: 'done',
|
|
310
605
|
meta: {
|
|
311
606
|
description: {
|
|
312
|
-
'en-US': '
|
|
313
|
-
'pt-BR': '
|
|
607
|
+
'en-US': 'Tables — Documentation of Docsector Reader',
|
|
608
|
+
'pt-BR': 'Tabelas — Documentacao do Docsector Reader'
|
|
314
609
|
}
|
|
315
610
|
},
|
|
316
611
|
book: 'manual',
|
|
317
612
|
menu: {},
|
|
318
613
|
subpages: {
|
|
319
|
-
showcase:
|
|
614
|
+
showcase: true
|
|
320
615
|
}
|
|
321
616
|
},
|
|
322
617
|
data: {
|
|
323
|
-
'en-US': { title: '
|
|
324
|
-
'pt-BR': { title: '
|
|
618
|
+
'en-US': { title: 'Tables' },
|
|
619
|
+
'pt-BR': { title: 'Tabelas' }
|
|
325
620
|
},
|
|
326
621
|
metadata: {
|
|
327
622
|
tags: {
|
|
328
|
-
'en-US': '
|
|
329
|
-
'pt-BR': '
|
|
623
|
+
'en-US': 'table markdown rows columns alignment data',
|
|
624
|
+
'pt-BR': 'tabela markdown linhas colunas alinhamento dados'
|
|
330
625
|
}
|
|
331
626
|
}
|
|
332
627
|
},
|
|
333
628
|
|
|
334
|
-
|
|
335
|
-
// Components — Utility
|
|
336
|
-
// =========================================================================
|
|
337
|
-
'/components/q-zoom': {
|
|
629
|
+
'/content/blocks/raw-html': {
|
|
338
630
|
config: {
|
|
339
|
-
icon: '
|
|
631
|
+
icon: 'html',
|
|
340
632
|
status: 'done',
|
|
341
633
|
meta: {
|
|
342
634
|
description: {
|
|
343
|
-
'en-US': '
|
|
344
|
-
'pt-BR': '
|
|
635
|
+
'en-US': 'Raw HTML — Documentation of Docsector Reader',
|
|
636
|
+
'pt-BR': 'HTML bruto — Documentacao do Docsector Reader'
|
|
345
637
|
}
|
|
346
638
|
},
|
|
347
639
|
book: 'manual',
|
|
348
|
-
menu: {
|
|
349
|
-
|
|
640
|
+
menu: {},
|
|
641
|
+
subpages: {
|
|
642
|
+
showcase: true
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
data: {
|
|
646
|
+
'en-US': { title: 'Raw HTML' },
|
|
647
|
+
'pt-BR': { title: 'HTML bruto' }
|
|
648
|
+
},
|
|
649
|
+
metadata: {
|
|
650
|
+
tags: {
|
|
651
|
+
'en-US': 'raw html markup inline block custom elements markdown',
|
|
652
|
+
'pt-BR': 'html bruto marcação inline bloco elementos customizados markdown'
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
|
|
657
|
+
'/content/blocks/quick-links': {
|
|
658
|
+
config: {
|
|
659
|
+
icon: 'dashboard',
|
|
660
|
+
status: 'done',
|
|
661
|
+
meta: {
|
|
662
|
+
description: {
|
|
663
|
+
'en-US': 'Quick Links — Documentation of Docsector Reader',
|
|
664
|
+
'pt-BR': 'Quick Links — Documentacao do Docsector Reader'
|
|
665
|
+
}
|
|
350
666
|
},
|
|
667
|
+
book: 'manual',
|
|
668
|
+
menu: {},
|
|
351
669
|
subpages: {
|
|
352
|
-
showcase:
|
|
670
|
+
showcase: true
|
|
353
671
|
}
|
|
354
672
|
},
|
|
355
673
|
data: {
|
|
356
|
-
'en-US': { title: '
|
|
357
|
-
'pt-BR': { title: '
|
|
674
|
+
'en-US': { title: 'Quick Links' },
|
|
675
|
+
'pt-BR': { title: 'Quick Links' }
|
|
358
676
|
},
|
|
359
677
|
metadata: {
|
|
360
678
|
tags: {
|
|
361
|
-
'en-US': '
|
|
362
|
-
'pt-BR': '
|
|
679
|
+
'en-US': 'quick links cards navigation callout homepage links',
|
|
680
|
+
'pt-BR': 'quick links cards navegação callout homepage links'
|
|
363
681
|
}
|
|
364
682
|
}
|
|
365
683
|
},
|
|
366
684
|
|
|
367
|
-
|
|
368
|
-
// Composables
|
|
369
|
-
// =========================================================================
|
|
370
|
-
'/composables': {
|
|
685
|
+
'/content/structures': {
|
|
371
686
|
config: null,
|
|
372
687
|
data: {
|
|
373
|
-
'en-US': { title: '
|
|
374
|
-
'pt-BR': { title: '
|
|
688
|
+
'en-US': { title: 'Structures' },
|
|
689
|
+
'pt-BR': { title: 'Estruturas' }
|
|
375
690
|
}
|
|
376
691
|
},
|
|
377
692
|
|
|
378
|
-
'/
|
|
693
|
+
'/content/structures/books': {
|
|
379
694
|
config: {
|
|
380
|
-
icon: '
|
|
695
|
+
icon: 'menu_book',
|
|
381
696
|
status: 'done',
|
|
382
697
|
meta: {
|
|
383
698
|
description: {
|
|
384
|
-
'en-US': '
|
|
385
|
-
'pt-BR': '
|
|
699
|
+
'en-US': 'Books — Documentation of Docsector Reader',
|
|
700
|
+
'pt-BR': 'Books — Documentacao do Docsector Reader'
|
|
386
701
|
}
|
|
387
702
|
},
|
|
388
703
|
book: 'manual',
|
|
389
|
-
menu: {
|
|
704
|
+
menu: {
|
|
705
|
+
subheader: '.content.structures'
|
|
706
|
+
},
|
|
390
707
|
subpages: {
|
|
391
708
|
showcase: false
|
|
392
709
|
}
|
|
393
710
|
},
|
|
394
711
|
data: {
|
|
395
|
-
'en-US': { title: '
|
|
396
|
-
'pt-BR': { title: '
|
|
712
|
+
'en-US': { title: 'Books' },
|
|
713
|
+
'pt-BR': { title: 'Books' }
|
|
397
714
|
},
|
|
398
715
|
metadata: {
|
|
399
716
|
tags: {
|
|
400
|
-
'en-US': '
|
|
401
|
-
'pt-BR': '
|
|
717
|
+
'en-US': 'book books tabs manual guide registry definebook label icon order color',
|
|
718
|
+
'pt-BR': 'book books abas manual guide registro definebook label ícone ordem cor'
|
|
402
719
|
}
|
|
403
720
|
}
|
|
404
721
|
},
|
|
405
722
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
723
|
+
'/content/structures/page': {
|
|
724
|
+
config: {
|
|
725
|
+
icon: 'web',
|
|
726
|
+
status: 'done',
|
|
727
|
+
meta: {
|
|
728
|
+
description: {
|
|
729
|
+
'en-US': 'Page — Documentation of Docsector Reader',
|
|
730
|
+
'pt-BR': 'Página — Documentacao do Docsector Reader'
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
book: 'manual',
|
|
734
|
+
menu: {},
|
|
735
|
+
subpages: {
|
|
736
|
+
showcase: false
|
|
737
|
+
}
|
|
738
|
+
},
|
|
411
739
|
data: {
|
|
412
|
-
'en-US': { title: '
|
|
413
|
-
'pt-BR': { title: '
|
|
740
|
+
'en-US': { title: 'Page' },
|
|
741
|
+
'pt-BR': { title: 'Página' }
|
|
742
|
+
},
|
|
743
|
+
metadata: {
|
|
744
|
+
tags: {
|
|
745
|
+
'en-US': 'page container scroll toolbar drawer layout subpage tabs',
|
|
746
|
+
'pt-BR': 'página container scroll toolbar drawer layout subpágina abas'
|
|
747
|
+
}
|
|
414
748
|
}
|
|
415
749
|
},
|
|
416
750
|
|
|
417
|
-
'/
|
|
751
|
+
'/content/structures/subpage': {
|
|
418
752
|
config: {
|
|
419
|
-
icon: '
|
|
753
|
+
icon: 'layers',
|
|
420
754
|
status: 'done',
|
|
421
755
|
meta: {
|
|
422
756
|
description: {
|
|
423
|
-
'en-US': '
|
|
424
|
-
'pt-BR': '
|
|
757
|
+
'en-US': 'Subpage — Documentation of Docsector Reader',
|
|
758
|
+
'pt-BR': 'Subpágina — Documentacao do Docsector Reader'
|
|
425
759
|
}
|
|
426
760
|
},
|
|
427
761
|
book: 'manual',
|
|
@@ -431,13 +765,13 @@ export default {
|
|
|
431
765
|
}
|
|
432
766
|
},
|
|
433
767
|
data: {
|
|
434
|
-
'en-US': { title: '
|
|
435
|
-
'pt-BR': { title: '
|
|
768
|
+
'en-US': { title: 'Subpage' },
|
|
769
|
+
'pt-BR': { title: 'Subpágina' }
|
|
436
770
|
},
|
|
437
771
|
metadata: {
|
|
438
772
|
tags: {
|
|
439
|
-
'en-US': '
|
|
440
|
-
'pt-BR': '
|
|
773
|
+
'en-US': 'subpage wrapper composition dh1 section hash',
|
|
774
|
+
'pt-BR': 'subpágina wrapper composição dh1 seção hash'
|
|
441
775
|
}
|
|
442
776
|
}
|
|
443
777
|
}
|