-
Notifications
You must be signed in to change notification settings - Fork 0
/
attributes.ts
74 lines (73 loc) · 1.35 KB
/
attributes.ts
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
export const nonLocalizableBuiltinAttributeKeys = [
'author',
'authorcount',
'authorinitials',
'authors',
'asciidoctor',
'asciidoctor-version',
'attribute-missing',
'attribute-undefined',
'backend',
'backend-html5',
'backend-html5-doctype-article',
'basebackend',
'basebackend-html',
'basebackend-html-doctype-article',
'docdate',
'docdatetime',
'docdir',
'doctime',
'doctype',
'doctype-article',
'docyear',
'embedded',
'filetype',
'filetype-html',
'firstname',
'htmlsyntax',
'iconfont-remote',
'iconsdir',
'lastname',
'linkcss',
'localdate',
'localdatetime',
'localtime',
'localyear',
'max-attribute-value-size',
'max-include-depth',
'notitle',
'outfilesuffix',
'prewrap',
'safe-mode-level',
'safe-mode-name',
'safe-mode-secure',
'sectids',
'stylesdir',
'stylesheet',
'toc',
'toc-placement',
'toc-position',
'user-home',
'webfonts',
];
export const allBuiltinsAttributeKeys = [
'appendix-caption',
'appendix-refsig',
'caution-caption',
'chapter-refsig',
'example-caption',
'figure-caption',
'important-caption',
'last-update-label',
'manname-title',
'note-caption',
'part-refsig',
'section-refsig',
'table-caption',
'tip-caption',
'toc-title',
'untitled-label',
'version-label',
'warning-caption',
...nonLocalizableBuiltinAttributeKeys,
];