@amermathsoc/texml-to-html 15.0.0

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.
Files changed (166) hide show
  1. package/CHANGELOG.md +1414 -0
  2. package/LICENSE +202 -0
  3. package/NOTICE +5 -0
  4. package/README.md +16 -0
  5. package/examples/cli.js +6 -0
  6. package/ldom.js +6 -0
  7. package/lib/doms.js +30 -0
  8. package/lib/elements/abstract.js +34 -0
  9. package/lib/elements/algorithm.js +78 -0
  10. package/lib/elements/app.js +35 -0
  11. package/lib/elements/article-metadata-json.js +167 -0
  12. package/lib/elements/article-title.js +26 -0
  13. package/lib/elements/article.js +28 -0
  14. package/lib/elements/attrib.js +41 -0
  15. package/lib/elements/bold.js +32 -0
  16. package/lib/elements/book-meta-json.js +134 -0
  17. package/lib/elements/book-meta.js +33 -0
  18. package/lib/elements/book-title.js +26 -0
  19. package/lib/elements/boxed-text.js +31 -0
  20. package/lib/elements/break.js +25 -0
  21. package/lib/elements/caption.js +52 -0
  22. package/lib/elements/compound-kwd.js +27 -0
  23. package/lib/elements/def-item.js +26 -0
  24. package/lib/elements/def-list.js +30 -0
  25. package/lib/elements/def.js +29 -0
  26. package/lib/elements/disp-formula-group.js +30 -0
  27. package/lib/elements/disp-quote.js +33 -0
  28. package/lib/elements/email.js +28 -0
  29. package/lib/elements/ext-link.js +38 -0
  30. package/lib/elements/fig.js +32 -0
  31. package/lib/elements/fn.js +42 -0
  32. package/lib/elements/formula.js +51 -0
  33. package/lib/elements/front.js +64 -0
  34. package/lib/elements/funding-group.js +26 -0
  35. package/lib/elements/graphic.js +49 -0
  36. package/lib/elements/img.js +28 -0
  37. package/lib/elements/italic.js +33 -0
  38. package/lib/elements/kwd-group.js +29 -0
  39. package/lib/elements/kwd.js +26 -0
  40. package/lib/elements/label.js +101 -0
  41. package/lib/elements/line.js +31 -0
  42. package/lib/elements/meta-name.js +29 -0
  43. package/lib/elements/meta-value.js +27 -0
  44. package/lib/elements/mixed-citation.js +35 -0
  45. package/lib/elements/monospace.js +35 -0
  46. package/lib/elements/notes.js +36 -0
  47. package/lib/elements/p.js +29 -0
  48. package/lib/elements/preface.js +33 -0
  49. package/lib/elements/ref-list.js +50 -0
  50. package/lib/elements/ref.js +28 -0
  51. package/lib/elements/roman.js +34 -0
  52. package/lib/elements/sans-serif.js +34 -0
  53. package/lib/elements/sc.js +35 -0
  54. package/lib/elements/sec-meta.js +35 -0
  55. package/lib/elements/sec.js +89 -0
  56. package/lib/elements/secheading.js +43 -0
  57. package/lib/elements/simpletabbing.js +29 -0
  58. package/lib/elements/statement.js +31 -0
  59. package/lib/elements/string-name.js +28 -0
  60. package/lib/elements/styled-content.js +32 -0
  61. package/lib/elements/subj-group.js +29 -0
  62. package/lib/elements/subject.js +26 -0
  63. package/lib/elements/subtitle.js +29 -0
  64. package/lib/elements/table.js +28 -0
  65. package/lib/elements/tag.js +50 -0
  66. package/lib/elements/target.js +39 -0
  67. package/lib/elements/term.js +31 -0
  68. package/lib/elements/tex-math.js +34 -0
  69. package/lib/elements/text.js +29 -0
  70. package/lib/elements/toc-entry.js +63 -0
  71. package/lib/elements/toc.js +35 -0
  72. package/lib/elements/underline.js +26 -0
  73. package/lib/elements/x.js +27 -0
  74. package/lib/elements/xref-group.js +36 -0
  75. package/lib/elements/xref.js +89 -0
  76. package/lib/hacks.js +43 -0
  77. package/lib/head.js +38 -0
  78. package/lib/helpers/copyElement.js +29 -0
  79. package/lib/helpers/extractContribGroups.js +94 -0
  80. package/lib/helpers/generateByline.js +35 -0
  81. package/lib/helpers/getParentLevel.js +24 -0
  82. package/lib/helpers/helpers-tex.js +54 -0
  83. package/lib/helpers/mapAttributes.js +54 -0
  84. package/lib/helpers/mapColorAttributes.js +36 -0
  85. package/lib/helpers/unnest.js +34 -0
  86. package/lib/transformer.js +311 -0
  87. package/out.html +550 -0
  88. package/package.json +39 -0
  89. package/test/article--alttitle.xml +146 -0
  90. package/test/article--nometa.xml +40 -0
  91. package/test/article-alttitle-meta-snapshot.json +94 -0
  92. package/test/article-meta-snapshot.json +129 -0
  93. package/test/article-nometa-meta-snapshot.json +46 -0
  94. package/test/article.xml +593 -0
  95. package/test/attribute-content-type.js +26 -0
  96. package/test/attribute-has-qed-box.js +28 -0
  97. package/test/attribute-hidden.js +27 -0
  98. package/test/attribute-rowspan-colspan.js +27 -0
  99. package/test/attribute-specific-use.js +27 -0
  100. package/test/attribute-style.js +27 -0
  101. package/test/book-meta-snapshot.json +78 -0
  102. package/test/book.xml +292 -0
  103. package/test/copyElement.js +38 -0
  104. package/test/element-abstract-title.js +27 -0
  105. package/test/element-algorithm.js +56 -0
  106. package/test/element-article.js +24 -0
  107. package/test/element-attrib.js +27 -0
  108. package/test/element-back-app-group-app.js +28 -0
  109. package/test/element-bold.js +26 -0
  110. package/test/element-book-meta.js +37 -0
  111. package/test/element-book-preface.js +29 -0
  112. package/test/element-book-ref-list.js +32 -0
  113. package/test/element-book.js +33 -0
  114. package/test/element-boxed-text.js +28 -0
  115. package/test/element-break.js +27 -0
  116. package/test/element-citegroup.js +25 -0
  117. package/test/element-compound-kwd.js +24 -0
  118. package/test/element-def-list-def-item-def-term.js +43 -0
  119. package/test/element-disp-formula-group.js +27 -0
  120. package/test/element-disp-quote.js +31 -0
  121. package/test/element-email.js +26 -0
  122. package/test/element-ext-link.js +30 -0
  123. package/test/element-fig-subfig-label.js +38 -0
  124. package/test/element-fn.js +40 -0
  125. package/test/element-front.js +45 -0
  126. package/test/element-funding-group.js +29 -0
  127. package/test/element-graphic-inline-graphic.js +40 -0
  128. package/test/element-img.js +30 -0
  129. package/test/element-inline-formula-disp-formula-tex-math.js +91 -0
  130. package/test/element-italic.js +28 -0
  131. package/test/element-kwd-group.js +28 -0
  132. package/test/element-kwd.js +27 -0
  133. package/test/element-mixed-citation.js +32 -0
  134. package/test/element-monospace.js +27 -0
  135. package/test/element-notes.js +42 -0
  136. package/test/element-p-p.js +27 -0
  137. package/test/element-ref-list-ref-label.js +40 -0
  138. package/test/element-roman.js +27 -0
  139. package/test/element-sans-serif.js +27 -0
  140. package/test/element-sc.js +27 -0
  141. package/test/element-sec-app-front-matter-part-dedication-title-label.js +87 -0
  142. package/test/element-sec-meta.js +43 -0
  143. package/test/element-secheading.js +28 -0
  144. package/test/element-simpletabbing-line.js +31 -0
  145. package/test/element-statement-label-title.js +120 -0
  146. package/test/element-string-name.js +27 -0
  147. package/test/element-stripEmptyLabel.js +26 -0
  148. package/test/element-styled-content.js +28 -0
  149. package/test/element-subtitle.js +36 -0
  150. package/test/element-table-wrap-group.js +30 -0
  151. package/test/element-table-wrap.js +51 -0
  152. package/test/element-table.js +34 -0
  153. package/test/element-tag.js +38 -0
  154. package/test/element-target.js +33 -0
  155. package/test/element-toc-toc-entry.js +77 -0
  156. package/test/element-underline.js +27 -0
  157. package/test/element-verse-group.js +28 -0
  158. package/test/element-x.js +30 -0
  159. package/test/element-xref-group.js +26 -0
  160. package/test/element-xref.js +32 -0
  161. package/test/hacks.js +37 -0
  162. package/test/helper-mapColorAttributes.js +27 -0
  163. package/test/helper.js +26 -0
  164. package/test/setHead.js +32 -0
  165. package/test/unit/abstract.js +35 -0
  166. package/texml-to-html.js +32 -0
@@ -0,0 +1,146 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.1d1 20130915//EN" "JATS-archivearticle1-mathml3.dtd">
3
+ <article xmlns:xlink="http://www.w3.org/1999/xlink" xml:lang="fr">
4
+ <front>
5
+ <article-meta>
6
+ <contrib-group content-type="contribAs">
7
+ <contrib contrib-type="contribA">
8
+ <contrib-id contrib-id-type="mrauth">mrauthid</contrib-id>
9
+ <contrib-id contrib-id-type="orcid">orcidid</contrib-id>
10
+ <name name-style="western">
11
+ <surname>Sur</surname>
12
+ <given-names>Given</given-names>
13
+ <suffix><x>, </x>Jr.</suffix>
14
+ </name>
15
+ <xref ref-type="aff" rid="aff"/>
16
+ <email>email</email>
17
+ <uri>uri</uri>
18
+ <bio>Some biographical info with <email>email</email></bio>
19
+ </contrib>
20
+ <aff id="aff">aff</aff>
21
+ <author-comment>comment</author-comment>
22
+ </contrib-group>
23
+ <contrib-group content-type="contribBs">
24
+ <contrib contrib-type="contribB">
25
+ <contrib-id contrib-id-type="mrauth">mrauthid</contrib-id>
26
+ <contrib-id contrib-id-type="orcid">orcidid</contrib-id>
27
+ <name name-style="western">
28
+ <surname>Sur</surname>
29
+ <given-names>Given</given-names>
30
+ </name>
31
+ <xref ref-type="aff" rid="aff1"/>
32
+ <xref ref-type="aff" rid="aff2"/>
33
+ <email>address1</email>
34
+ <email>address2</email>
35
+ <uri>uri</uri>
36
+ </contrib>
37
+ <aff id="aff1" specific-use="current">Aff1</aff>
38
+ <aff id="aff2">Aff2</aff>
39
+ <author-comment>comment</author-comment>
40
+ </contrib-group>
41
+ <funding-group>
42
+ <funding-statement/>
43
+ </funding-group>
44
+ <permissions><copyright-statement/></permissions>
45
+ <self-uri xlink:href="href" content-type="abstract"/>
46
+ <self-uri xlink:href="href" content-type="pdf"/>
47
+ <article-id pub-id-type="doi">doi</article-id>
48
+ <article-id pub-id-type="pii">pii</article-id>
49
+ <article-citation/>
50
+ <kwd-group/>
51
+ <custom-meta-group>
52
+ <custom-meta specific-use='communicated-by'>
53
+ <meta-name>meta-name</meta-name>
54
+ <meta-value>meta-value</meta-value>
55
+ </custom-meta>
56
+ </custom-meta-group>
57
+ <subj-group>
58
+ <subject>subject</subject>
59
+ </subj-group>
60
+ <title-group>
61
+ <article-title>article-title</article-title>
62
+ <alt-title>alttitle</alt-title>
63
+ <subtitle>article-subtitle</subtitle>
64
+ </title-group>
65
+ <pub-date date-type="pub" iso-8601-date="2000-04-13" publication-format="electronic">
66
+ <day>13</day>
67
+ <month>4</month>
68
+ <year>2000</year>
69
+ </pub-date>
70
+ <history>
71
+ <date date-type="received" iso-8601-date="1999-09-15">
72
+ <day>15</day>
73
+ <month>9</month>
74
+ <year>1999</year>
75
+ </date>
76
+ <date date-type="rev-recd" iso-8601-date="2000-07-01">
77
+ <day>1</day>
78
+ <month>7</month>
79
+ <year>2000</year>
80
+ </date>
81
+ <date date-type="xml-last-modified" iso-8601-date="2019-07-04T02:36:54Z">
82
+ <string-date>2019-07-04T02:36:54Z</string-date>
83
+ </date>
84
+ </history>
85
+ <article-id pub-id-type="doi">doi</article-id>
86
+ <article-id pub-id-type="pii">pii</article-id>
87
+ <abstract/>
88
+ </article-meta>
89
+ <journal-meta>
90
+ <journal-id journal-id-type="publisher">journalId</journal-id>
91
+ <journal-title-group>
92
+ <journal-title>journal-title</journal-title>
93
+ <abbrev-journal-title>abbrev-journal-title</abbrev-journal-title>
94
+ <issn publication-format="print">print</issn>
95
+ <issn publication-format="electronic">electronic</issn>
96
+ </journal-title-group>
97
+ <publisher>
98
+ <publisher-name>publisher-name</publisher-name>
99
+ <publisher-loc>publisher-loc</publisher-loc>
100
+ </publisher>
101
+ <self-uri xlink:href="href"/>
102
+ </journal-meta>
103
+ <notes notes-type="article"/>
104
+ </front>
105
+ <body>
106
+ <sec id="sec" disp-level="1" specific-use="part">
107
+ <sec id="seclabeltitle" disp-level="2" specific-use="section">
108
+ <label>Label</label>
109
+ <title>Title</title>
110
+ </sec>
111
+ </sec>
112
+ <sec disp-level="1" id="secmeta" specific-use="section">
113
+ <sec-meta>
114
+ <contrib-group content-type="authors">
115
+ <contrib contrib-type="author">
116
+ <string-name>Author 1</string-name>
117
+ <bio>Author 1 Bio</bio>
118
+ </contrib>
119
+ </contrib-group>
120
+ <contrib-group content-type="contributors">
121
+ <author-comment>with</author-comment>
122
+ <contrib contrib-type="contributor">
123
+ <string-name>Author 2</string-name>
124
+ <bio>Author 2 Bio</bio>
125
+ </contrib>
126
+ </contrib-group>
127
+ <notes notes-type="article">
128
+ <p>A sec-meta note.</p>
129
+ </notes>
130
+ </sec-meta>
131
+ </sec>
132
+ </body>
133
+ <back>
134
+ <ref-list content-type="biblist" id="reflist">
135
+ <title>References</title>
136
+ <ref-list content-type="biblist" id="reflist2">
137
+ <title>Inner References</title>
138
+ <ref id="ref">
139
+ <label>Label</label>
140
+ <raw-citation>Raw</raw-citation>
141
+ <mixed-citation>Mixed</mixed-citation>
142
+ </ref>
143
+ </ref-list>
144
+ </ref-list>
145
+ </back>
146
+ </article>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD with MathML3 v1.1d1 20130915//EN" "JATS-archivearticle1-mathml3.dtd">
3
+ <article xmlns:xlink="http://www.w3.org/1999/xlink" xml:lang="fr">
4
+ <front>
5
+ <journal-meta>
6
+ <journal-id journal-id-type="publisher">noti20-1C</journal-id>
7
+ </journal-meta>
8
+ <article-meta>
9
+ <title-group>
10
+ <article-title>Structures in Representation Stability</article-title>
11
+ </title-group>
12
+ <contrib-group content-type="authors">
13
+ <contrib contrib-type="author">
14
+ <name>
15
+ <surname>Jemand</surname>
16
+ </name>
17
+ </contrib>
18
+ </contrib-group>
19
+ <history>
20
+ <date date-type="issue-date">
21
+ <month>1</month>
22
+ <year>2020</year>
23
+ </date>
24
+ <date date-type="xml-last-modified" iso-8601-date="2019-12-04T21:36:43Z">
25
+ <string-date>2019-12-04T21:36:43Z</string-date>
26
+ </date>
27
+ </history>
28
+ <volume>67</volume>
29
+ <issue>1</issue>
30
+ </article-meta>
31
+ </front>
32
+ <body>
33
+ <sec id="sec" disp-level="1" specific-use="part">
34
+ <sec id="seclabeltitle" disp-level="2" specific-use="section">
35
+ <label>Label</label>
36
+ <title>Title</title>
37
+ </sec>
38
+ </sec>
39
+ </body>
40
+ </article>
@@ -0,0 +1,94 @@
1
+ {
2
+ "title": "article-title",
3
+ "alttitle": "alttitle",
4
+ "subtitle": "article-subtitle",
5
+ "identifiers": {
6
+ "AMS": {
7
+ "pii": "pii"
8
+ },
9
+ "crossref": {
10
+ "doi": "doi"
11
+ },
12
+ "uri": {
13
+ "abstract": "href",
14
+ "pdf": "href"
15
+ },
16
+ "amsref": "",
17
+ "basename": "journalIdundefined"
18
+ },
19
+ "relatedArticles": {},
20
+ "publishers": [
21
+ {
22
+ "name": "publisher-name",
23
+ "location": "publisher-loc"
24
+ }
25
+ ],
26
+ "contributors": {
27
+ "contribAs": [
28
+ {
29
+ "name": "Given Sur, Jr.",
30
+ "bio": "Some biographical info with <a href=\"mailto://email\">email</a>",
31
+ "affiliations": [
32
+ "aff"
33
+ ],
34
+ "emails": [
35
+ "email"
36
+ ],
37
+ "mrauth": "mrauthid",
38
+ "orcid": "orcidid",
39
+ "uri": "uri",
40
+ "byline": "comment"
41
+ }
42
+ ],
43
+ "contribBs": [
44
+ {
45
+ "name": "Given Sur",
46
+ "bio": "",
47
+ "affiliations": [
48
+ "<span>Address at time of publication:</span> Aff1",
49
+ "Aff2"
50
+ ],
51
+ "emails": [
52
+ "address1",
53
+ "address2"
54
+ ],
55
+ "mrauth": "mrauthid",
56
+ "orcid": "orcidid",
57
+ "uri": "uri",
58
+ "byline": "comment"
59
+ }
60
+ ]
61
+ },
62
+ "byline": "comment Given Sur, Jr., comment Given Sur",
63
+ "permissions": {
64
+ "copyrightStatement": ""
65
+ },
66
+ "journal": {
67
+ "title": "journal-title",
68
+ "identifiers": {
69
+ "AMS": {
70
+ "journalId": "journalId"
71
+ },
72
+ "issn": {
73
+ "print": "",
74
+ "electronic": ""
75
+ },
76
+ "uri": ""
77
+ }
78
+ },
79
+ "customMeta": {
80
+ "communicated-by": "meta-value"
81
+ },
82
+ "categories": {
83
+ "category": "subject"
84
+ },
85
+ "volumeInfo": {},
86
+ "history": {
87
+ "published": "2000-04-13",
88
+ "received": "1999-09-15",
89
+ "rev-recd": [
90
+ "2000-07-01"
91
+ ]
92
+ },
93
+ "keywords": []
94
+ }
@@ -0,0 +1,129 @@
1
+ {
2
+ "title": "article-title",
3
+ "alttitle": "article-title",
4
+ "identifiers": {
5
+ "AMS": {
6
+ "manuscriptId": "manuscriptId",
7
+ "mr": "mr",
8
+ "pii": "pii"
9
+ },
10
+ "crossref": {
11
+ "doi": "doi"
12
+ },
13
+ "uri": {
14
+ "abstract": "href",
15
+ "pdf": "href"
16
+ },
17
+ "amsref": "",
18
+ "basename": "journalIdmanuscriptId"
19
+ },
20
+ "relatedArticles": {
21
+ "S0894-0347-2023-01025-2": {
22
+ "type": "erratum-forward",
23
+ "url": "https://www.ams.org/jams/2023-36-04/S0894-0347-2023-01025-2/",
24
+ "linkText": "J. Amer. Math. Soc. 36 (2023), 1305-1308."
25
+ }
26
+ },
27
+ "publishers": [
28
+ {
29
+ "name": "publisher-name",
30
+ "location": "publisher-loc"
31
+ }
32
+ ],
33
+ "contributors": {
34
+ "contribAs": [
35
+ {
36
+ "name": "Given Sur",
37
+ "bio": "",
38
+ "affiliations": [
39
+ "aff"
40
+ ],
41
+ "emails": [
42
+ "email"
43
+ ],
44
+ "mrauth": "mrauthid",
45
+ "orcid": "orcidid",
46
+ "uri": "uri",
47
+ "byline": "comment"
48
+ },
49
+ {
50
+ "name": "Given2 Sur2",
51
+ "bio": "",
52
+ "affiliations": [
53
+ "aff"
54
+ ],
55
+ "emails": [
56
+ "email"
57
+ ],
58
+ "mrauth": "mrauthid",
59
+ "orcid": "orcidid",
60
+ "uri": "uri"
61
+ }
62
+ ],
63
+ "contribBs": [
64
+ {
65
+ "name": "Given Sur Jr.",
66
+ "bio": "",
67
+ "affiliations": [
68
+ "<span>Address at time of publication:</span> Aff1",
69
+ "Aff2"
70
+ ],
71
+ "emails": [
72
+ "address1",
73
+ "address2"
74
+ ],
75
+ "mrauth": "mrauthid",
76
+ "orcid": "orcidid",
77
+ "uri": "uri",
78
+ "byline": "comment"
79
+ }
80
+ ]
81
+ },
82
+ "byline": "comment Given Sur and Given2 Sur2, comment Given Sur Jr.",
83
+ "permissions": {
84
+ "copyrightStatement": ""
85
+ },
86
+ "journal": {
87
+ "title": "journal-title",
88
+ "identifiers": {
89
+ "AMS": {
90
+ "journalId": "journalId"
91
+ },
92
+ "issn": {
93
+ "print": "print",
94
+ "electronic": "electronic"
95
+ },
96
+ "uri": ""
97
+ }
98
+ },
99
+ "customMeta": {
100
+ "communicated-by": "meta-value",
101
+ "titlepic": "<img alt=\"Graphic without alt text\" data-ams-height=\"218pt\" data-ams-width=\"493pt\" data-ams-style=\"null\" src=\"Images/imgc920fa78a62d5705041ab0ad31b3c7df.svg\" data-ams-doc=\"inline-graphic\">"
102
+ },
103
+ "categories": {},
104
+ "volumeInfo": {
105
+ "volume": "volume",
106
+ "issue": "issue"
107
+ },
108
+ "history": {
109
+ "published": "2000-04-13",
110
+ "received": "1999-09-15",
111
+ "rev-recd": [
112
+ "2000-07-01",
113
+ "2000-07-02"
114
+ ]
115
+ },
116
+ "msc": {
117
+ "vocab": "MSC scheme",
118
+ "vocabUrl": "https://mathscinet.ams.org/msc/msc2020.html?t=",
119
+ "primary": [
120
+ "key1",
121
+ "key2"
122
+ ],
123
+ "secondary": [
124
+ "key3",
125
+ "key4"
126
+ ]
127
+ },
128
+ "keywords": []
129
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "title": "Structures in Representation Stability",
3
+ "alttitle": "Structures in Representation Stability",
4
+ "identifiers": {
5
+ "AMS": {},
6
+ "crossref": {},
7
+ "uri": {},
8
+ "basename": "noti20-1Cundefined"
9
+ },
10
+ "relatedArticles": {},
11
+ "publishers": [],
12
+ "contributors": {
13
+ "authors": [
14
+ {
15
+ "name": "Jemand",
16
+ "bio": "",
17
+ "affiliations": [],
18
+ "emails": []
19
+ }
20
+ ]
21
+ },
22
+ "byline": "Jemand",
23
+ "permissions": {},
24
+ "journal": {
25
+ "identifiers": {
26
+ "AMS": {
27
+ "journalId": "noti20-1C"
28
+ },
29
+ "issn": {
30
+ "print": "",
31
+ "electronic": ""
32
+ }
33
+ }
34
+ },
35
+ "customMeta": {},
36
+ "categories": {},
37
+ "volumeInfo": {
38
+ "volume": "67",
39
+ "issue": "1"
40
+ },
41
+ "history": {
42
+ "rev-recd": [],
43
+ "issue": null
44
+ },
45
+ "keywords": []
46
+ }