@@ -11,6 +11,55 @@ public class DefaultDeclarationFactory : IDeclarationFactory
11
11
{
12
12
private readonly Dictionary < String , DeclarationInfo > _declarations = new Dictionary < String , DeclarationInfo > ( StringComparer . OrdinalIgnoreCase )
13
13
{
14
+ {
15
+ BookmarkLabelDeclaration . Name , new DeclarationInfo (
16
+ name : BookmarkLabelDeclaration . Name ,
17
+ converter : BookmarkLabelDeclaration . Converter ,
18
+ initialValue : BookmarkLabelDeclaration . InitialValue ,
19
+ flags : BookmarkLabelDeclaration . Flags )
20
+ } ,
21
+ {
22
+ BookmarkLevelDeclaration . Name , new DeclarationInfo (
23
+ name : BookmarkLevelDeclaration . Name ,
24
+ converter : BookmarkLevelDeclaration . Converter ,
25
+ initialValue : BookmarkLevelDeclaration . InitialValue ,
26
+ flags : BookmarkLevelDeclaration . Flags )
27
+ } ,
28
+ {
29
+ BookmarkStateDeclaration . Name , new DeclarationInfo (
30
+ name : BookmarkStateDeclaration . Name ,
31
+ converter : BookmarkStateDeclaration . Converter ,
32
+ initialValue : BookmarkStateDeclaration . InitialValue ,
33
+ flags : BookmarkStateDeclaration . Flags )
34
+ } ,
35
+ {
36
+ FootnoteDisplayDeclaration . Name , new DeclarationInfo (
37
+ name : FootnoteDisplayDeclaration . Name ,
38
+ converter : FootnoteDisplayDeclaration . Converter ,
39
+ initialValue : FootnoteDisplayDeclaration . InitialValue ,
40
+ flags : FootnoteDisplayDeclaration . Flags )
41
+ } ,
42
+ {
43
+ FootnotePolicyDeclaration . Name , new DeclarationInfo (
44
+ name : FootnotePolicyDeclaration . Name ,
45
+ converter : FootnotePolicyDeclaration . Converter ,
46
+ initialValue : FootnotePolicyDeclaration . InitialValue ,
47
+ flags : FootnotePolicyDeclaration . Flags )
48
+ } ,
49
+ {
50
+ RunningDeclaration . Name , new DeclarationInfo (
51
+ name : RunningDeclaration . Name ,
52
+ converter : RunningDeclaration . Converter ,
53
+ initialValue : RunningDeclaration . InitialValue ,
54
+ flags : RunningDeclaration . Flags )
55
+ } ,
56
+ {
57
+ StringSetDeclaration . Name , new DeclarationInfo (
58
+ name : StringSetDeclaration . Name ,
59
+ converter : StringSetDeclaration . Converter ,
60
+ initialValue : StringSetDeclaration . InitialValue ,
61
+ flags : StringSetDeclaration . Flags )
62
+ } ,
14
63
{
15
64
CaptionSideDeclaration . Name , new DeclarationInfo (
16
65
name : CaptionSideDeclaration . Name ,
0 commit comments