@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.
- package/CHANGELOG.md +1414 -0
- package/LICENSE +202 -0
- package/NOTICE +5 -0
- package/README.md +16 -0
- package/examples/cli.js +6 -0
- package/ldom.js +6 -0
- package/lib/doms.js +30 -0
- package/lib/elements/abstract.js +34 -0
- package/lib/elements/algorithm.js +78 -0
- package/lib/elements/app.js +35 -0
- package/lib/elements/article-metadata-json.js +167 -0
- package/lib/elements/article-title.js +26 -0
- package/lib/elements/article.js +28 -0
- package/lib/elements/attrib.js +41 -0
- package/lib/elements/bold.js +32 -0
- package/lib/elements/book-meta-json.js +134 -0
- package/lib/elements/book-meta.js +33 -0
- package/lib/elements/book-title.js +26 -0
- package/lib/elements/boxed-text.js +31 -0
- package/lib/elements/break.js +25 -0
- package/lib/elements/caption.js +52 -0
- package/lib/elements/compound-kwd.js +27 -0
- package/lib/elements/def-item.js +26 -0
- package/lib/elements/def-list.js +30 -0
- package/lib/elements/def.js +29 -0
- package/lib/elements/disp-formula-group.js +30 -0
- package/lib/elements/disp-quote.js +33 -0
- package/lib/elements/email.js +28 -0
- package/lib/elements/ext-link.js +38 -0
- package/lib/elements/fig.js +32 -0
- package/lib/elements/fn.js +42 -0
- package/lib/elements/formula.js +51 -0
- package/lib/elements/front.js +64 -0
- package/lib/elements/funding-group.js +26 -0
- package/lib/elements/graphic.js +49 -0
- package/lib/elements/img.js +28 -0
- package/lib/elements/italic.js +33 -0
- package/lib/elements/kwd-group.js +29 -0
- package/lib/elements/kwd.js +26 -0
- package/lib/elements/label.js +101 -0
- package/lib/elements/line.js +31 -0
- package/lib/elements/meta-name.js +29 -0
- package/lib/elements/meta-value.js +27 -0
- package/lib/elements/mixed-citation.js +35 -0
- package/lib/elements/monospace.js +35 -0
- package/lib/elements/notes.js +36 -0
- package/lib/elements/p.js +29 -0
- package/lib/elements/preface.js +33 -0
- package/lib/elements/ref-list.js +50 -0
- package/lib/elements/ref.js +28 -0
- package/lib/elements/roman.js +34 -0
- package/lib/elements/sans-serif.js +34 -0
- package/lib/elements/sc.js +35 -0
- package/lib/elements/sec-meta.js +35 -0
- package/lib/elements/sec.js +89 -0
- package/lib/elements/secheading.js +43 -0
- package/lib/elements/simpletabbing.js +29 -0
- package/lib/elements/statement.js +31 -0
- package/lib/elements/string-name.js +28 -0
- package/lib/elements/styled-content.js +32 -0
- package/lib/elements/subj-group.js +29 -0
- package/lib/elements/subject.js +26 -0
- package/lib/elements/subtitle.js +29 -0
- package/lib/elements/table.js +28 -0
- package/lib/elements/tag.js +50 -0
- package/lib/elements/target.js +39 -0
- package/lib/elements/term.js +31 -0
- package/lib/elements/tex-math.js +34 -0
- package/lib/elements/text.js +29 -0
- package/lib/elements/toc-entry.js +63 -0
- package/lib/elements/toc.js +35 -0
- package/lib/elements/underline.js +26 -0
- package/lib/elements/x.js +27 -0
- package/lib/elements/xref-group.js +36 -0
- package/lib/elements/xref.js +89 -0
- package/lib/hacks.js +43 -0
- package/lib/head.js +38 -0
- package/lib/helpers/copyElement.js +29 -0
- package/lib/helpers/extractContribGroups.js +94 -0
- package/lib/helpers/generateByline.js +35 -0
- package/lib/helpers/getParentLevel.js +24 -0
- package/lib/helpers/helpers-tex.js +54 -0
- package/lib/helpers/mapAttributes.js +54 -0
- package/lib/helpers/mapColorAttributes.js +36 -0
- package/lib/helpers/unnest.js +34 -0
- package/lib/transformer.js +311 -0
- package/out.html +550 -0
- package/package.json +39 -0
- package/test/article--alttitle.xml +146 -0
- package/test/article--nometa.xml +40 -0
- package/test/article-alttitle-meta-snapshot.json +94 -0
- package/test/article-meta-snapshot.json +129 -0
- package/test/article-nometa-meta-snapshot.json +46 -0
- package/test/article.xml +593 -0
- package/test/attribute-content-type.js +26 -0
- package/test/attribute-has-qed-box.js +28 -0
- package/test/attribute-hidden.js +27 -0
- package/test/attribute-rowspan-colspan.js +27 -0
- package/test/attribute-specific-use.js +27 -0
- package/test/attribute-style.js +27 -0
- package/test/book-meta-snapshot.json +78 -0
- package/test/book.xml +292 -0
- package/test/copyElement.js +38 -0
- package/test/element-abstract-title.js +27 -0
- package/test/element-algorithm.js +56 -0
- package/test/element-article.js +24 -0
- package/test/element-attrib.js +27 -0
- package/test/element-back-app-group-app.js +28 -0
- package/test/element-bold.js +26 -0
- package/test/element-book-meta.js +37 -0
- package/test/element-book-preface.js +29 -0
- package/test/element-book-ref-list.js +32 -0
- package/test/element-book.js +33 -0
- package/test/element-boxed-text.js +28 -0
- package/test/element-break.js +27 -0
- package/test/element-citegroup.js +25 -0
- package/test/element-compound-kwd.js +24 -0
- package/test/element-def-list-def-item-def-term.js +43 -0
- package/test/element-disp-formula-group.js +27 -0
- package/test/element-disp-quote.js +31 -0
- package/test/element-email.js +26 -0
- package/test/element-ext-link.js +30 -0
- package/test/element-fig-subfig-label.js +38 -0
- package/test/element-fn.js +40 -0
- package/test/element-front.js +45 -0
- package/test/element-funding-group.js +29 -0
- package/test/element-graphic-inline-graphic.js +40 -0
- package/test/element-img.js +30 -0
- package/test/element-inline-formula-disp-formula-tex-math.js +91 -0
- package/test/element-italic.js +28 -0
- package/test/element-kwd-group.js +28 -0
- package/test/element-kwd.js +27 -0
- package/test/element-mixed-citation.js +32 -0
- package/test/element-monospace.js +27 -0
- package/test/element-notes.js +42 -0
- package/test/element-p-p.js +27 -0
- package/test/element-ref-list-ref-label.js +40 -0
- package/test/element-roman.js +27 -0
- package/test/element-sans-serif.js +27 -0
- package/test/element-sc.js +27 -0
- package/test/element-sec-app-front-matter-part-dedication-title-label.js +87 -0
- package/test/element-sec-meta.js +43 -0
- package/test/element-secheading.js +28 -0
- package/test/element-simpletabbing-line.js +31 -0
- package/test/element-statement-label-title.js +120 -0
- package/test/element-string-name.js +27 -0
- package/test/element-stripEmptyLabel.js +26 -0
- package/test/element-styled-content.js +28 -0
- package/test/element-subtitle.js +36 -0
- package/test/element-table-wrap-group.js +30 -0
- package/test/element-table-wrap.js +51 -0
- package/test/element-table.js +34 -0
- package/test/element-tag.js +38 -0
- package/test/element-target.js +33 -0
- package/test/element-toc-toc-entry.js +77 -0
- package/test/element-underline.js +27 -0
- package/test/element-verse-group.js +28 -0
- package/test/element-x.js +30 -0
- package/test/element-xref-group.js +26 -0
- package/test/element-xref.js +32 -0
- package/test/hacks.js +37 -0
- package/test/helper-mapColorAttributes.js +27 -0
- package/test/helper.js +26 -0
- package/test/setHead.js +32 -0
- package/test/unit/abstract.js +35 -0
- package/texml-to-html.js +32 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1414 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [15.0.0](https://github.com/AmerMathSoc/texml-to-html/compare/v14.0.1...v15.0.0) (2023-11-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* rename to texml-to-html, prepare publication
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* rename to texml-to-html, prepare publication ([61d141b](https://github.com/AmerMathSoc/texml-to-html/commit/61d141bba054799ae2f430fce814d07ac5fee77b))
|
|
15
|
+
|
|
16
|
+
### [14.0.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v14.0.0...v14.0.1) (2023-10-20)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **extractContribuGroups:** surname-only names ([7ecc1f7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7ecc1f78fb9a42f5bc61259f6737ed15aafae762)), closes [#432](https://github.com/AmerMathSoc/ams-xml-to-html/issues/432)
|
|
22
|
+
|
|
23
|
+
## [14.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.7.1...v14.0.0) (2023-10-04)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### ⚠ BREAKING CHANGES
|
|
27
|
+
|
|
28
|
+
* Introduces tex-math elements inside
|
|
29
|
+
data-ams-doc=math which contain the TeX strings as well as
|
|
30
|
+
data-ams-doc="tags" for copies of tags
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
* revise formula elements handling ([1896c1a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1896c1a29a342f6cd546e209c74786a604352403)), closes [#425](https://github.com/AmerMathSoc/ams-xml-to-html/issues/425)
|
|
35
|
+
|
|
36
|
+
### [13.7.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.7.0...v13.7.1) (2023-09-13)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* **x.js:** drop x in xref-group ([90cf722](https://github.com/AmerMathSoc/ams-xml-to-html/commit/90cf72242d5a329cd7eae84c48fab706df64a074)), closes [#431](https://github.com/AmerMathSoc/ams-xml-to-html/issues/431)
|
|
42
|
+
* **xref-group:** reduce data-ams-refrange value ([e6ad0b8](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e6ad0b82141cd884f6cee91f9da68a97b7d9b945)), closes [#431](https://github.com/AmerMathSoc/ams-xml-to-html/issues/431)
|
|
43
|
+
|
|
44
|
+
## [13.7.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.6.0...v13.7.0) (2023-09-12)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* support xref-group element ([42aa5e4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/42aa5e4232504c3578477127dc95cadfb30ecd4f)), closes [#428](https://github.com/AmerMathSoc/ams-xml-to-html/issues/428)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### Bug Fixes
|
|
53
|
+
|
|
54
|
+
* **xref.js:** remove deprecated ref-label handling ([4da69c3](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4da69c39d51d15cad31a7becdaf39f59776b5bcc)), closes [#427](https://github.com/AmerMathSoc/ams-xml-to-html/issues/427)
|
|
55
|
+
|
|
56
|
+
## [13.6.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.5.1...v13.6.0) (2023-08-09)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Features
|
|
60
|
+
|
|
61
|
+
* support related-article ([ad0887a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ad0887aed264e1af3af765794350d8a56f583dd9)), closes [#279](https://github.com/AmerMathSoc/ams-xml-to-html/issues/279)
|
|
62
|
+
|
|
63
|
+
### [13.5.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.5.0...v13.5.1) (2023-08-08)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Bug Fixes
|
|
67
|
+
|
|
68
|
+
* adjust to texml changes for "text equations" ([f6910d9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f6910d9a545559bba64c246d7776ae5d8a6cabc8)), closes [#426](https://github.com/AmerMathSoc/ams-xml-to-html/issues/426)
|
|
69
|
+
|
|
70
|
+
## [13.5.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.4.0...v13.5.0) (2023-06-29)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
### Features
|
|
74
|
+
|
|
75
|
+
* support tag element ([809b72b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/809b72b476e8dfb6c92680bb5d79b4adf8b0e03e)), closes [#423](https://github.com/AmerMathSoc/ams-xml-to-html/issues/423)
|
|
76
|
+
|
|
77
|
+
## [13.4.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.3.2...v13.4.0) (2023-06-27)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### Features
|
|
81
|
+
|
|
82
|
+
* **target.js:** heuristics tag extraction ([b901e6a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b901e6a16625a1a64e462c33361376b858525098)), closes [#401](https://github.com/AmerMathSoc/ams-xml-to-html/issues/401)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* replace nyc with c8 ([7219c83](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7219c8354dc215eeb1c54ef724ab83d1c059fc31)), closes [#421](https://github.com/AmerMathSoc/ams-xml-to-html/issues/421)
|
|
88
|
+
|
|
89
|
+
### [13.3.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.3.1...v13.3.2) (2023-05-08)
|
|
90
|
+
|
|
91
|
+
### [13.3.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.3.0...v13.3.1) (2023-03-28)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Bug Fixes
|
|
95
|
+
|
|
96
|
+
* **fn.js:** aria-label for footnotes ([0ed94bf](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0ed94bf4498840f3ddea6699b5af060d57597daf)), closes [#415](https://github.com/AmerMathSoc/ams-xml-to-html/issues/415)
|
|
97
|
+
|
|
98
|
+
## [13.3.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.2.0...v13.3.0) (2023-03-17)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Features
|
|
102
|
+
|
|
103
|
+
* disp-formula with content-type="text" ([060b1f1](https://github.com/AmerMathSoc/ams-xml-to-html/commit/060b1f1a43a06168c4402560edd7e03148c78b33)), closes [#413](https://github.com/AmerMathSoc/ams-xml-to-html/issues/413)
|
|
104
|
+
|
|
105
|
+
## [13.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.1.0...v13.2.0) (2023-02-22)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Features
|
|
109
|
+
|
|
110
|
+
* **article-metadata-json.js:** preserve vocab-identifier ([ed9ff61](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ed9ff61ebb297b3bc284efcea9e44dea2adcaf91)), closes [#412](https://github.com/AmerMathSoc/ams-xml-to-html/issues/412)
|
|
111
|
+
|
|
112
|
+
## [13.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.0.1...v13.1.0) (2023-02-13)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Features
|
|
116
|
+
|
|
117
|
+
* generate byline for article- and sec-meta ([97b1a93](https://github.com/AmerMathSoc/ams-xml-to-html/commit/97b1a93e4514d5c0b29f9e21ecbae915fdbf03e4)), closes [#409](https://github.com/AmerMathSoc/ams-xml-to-html/issues/409)
|
|
118
|
+
* **metadata:** add identifier for AMS "manid" ([4759519](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4759519ba3264111f9198cde71c1307191f0b219)), closes [#406](https://github.com/AmerMathSoc/ams-xml-to-html/issues/406)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
### Bug Fixes
|
|
122
|
+
|
|
123
|
+
* **article-metadata-json.js:** improve self-uri ([f780b79](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f780b79ae2e9ea611565e752666b41eb63a561c2)), closes [#404](https://github.com/AmerMathSoc/ams-xml-to-html/issues/404)
|
|
124
|
+
* **extractContribGroups.js:** handle groups of same type ([2b777ae](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2b777ae2beb905c6e62534b2860ec7e9b764fdbf)), closes [#408](https://github.com/AmerMathSoc/ams-xml-to-html/issues/408)
|
|
125
|
+
|
|
126
|
+
### [13.0.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v13.0.0...v13.0.1) (2023-01-27)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Bug Fixes
|
|
130
|
+
|
|
131
|
+
* **mixed-citation:** drop deprecated role ([a894343](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a894343947e3974087890ca0c922509e1dacd36f)), closes [#407](https://github.com/AmerMathSoc/ams-xml-to-html/issues/407)
|
|
132
|
+
|
|
133
|
+
## [13.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v12.0.0...v13.0.0) (2023-01-19)
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
### ⚠ BREAKING CHANGES
|
|
137
|
+
|
|
138
|
+
* Less markup in book metadata json blob, see #405.
|
|
139
|
+
* Overhaul of article metadata #254. Drops titlepage and copyright-page, introduces metadata as json blob.
|
|
140
|
+
|
|
141
|
+
### Features
|
|
142
|
+
|
|
143
|
+
* revise article metadata processing ([4c49d20](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4c49d20ac906c60fb664c64c0de5e3c5a6935357)), closes [#254](https://github.com/AmerMathSoc/ams-xml-to-html/issues/254)
|
|
144
|
+
* revise book metadata handling ([6a5b850](https://github.com/AmerMathSoc/ams-xml-to-html/commit/6a5b85045ac5b02cf8567c0e727e8a8a9de67eca)), closes [#254](https://github.com/AmerMathSoc/ams-xml-to-html/issues/254) [#405](https://github.com/AmerMathSoc/ams-xml-to-html/issues/405)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Bug Fixes
|
|
148
|
+
|
|
149
|
+
* **secheading.js:** revise level calculation ([75add67](https://github.com/AmerMathSoc/ams-xml-to-html/commit/75add67838b057fe22622ce17277be59df8b4cc2)), closes [#403](https://github.com/AmerMathSoc/ams-xml-to-html/issues/403)
|
|
150
|
+
* **statement.js:** drop data-ams-doc-level ([85e64c7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/85e64c71d3a1efdb4c343ea8933b7986cbbfc787)), closes [#403](https://github.com/AmerMathSoc/ams-xml-to-html/issues/403) [#397](https://github.com/AmerMathSoc/ams-xml-to-html/issues/397)
|
|
151
|
+
|
|
152
|
+
## [12.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v11.0.0...v12.0.0) (2022-12-21)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### ⚠ BREAKING CHANGES
|
|
156
|
+
|
|
157
|
+
* Removes support for deprecated MSC markup #386
|
|
158
|
+
|
|
159
|
+
### Features
|
|
160
|
+
|
|
161
|
+
* remove support for deprecated markup ([c7affa9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/c7affa9eab717f678f41ccaeb369712d66c198bf)), closes [#386](https://github.com/AmerMathSoc/ams-xml-to-html/issues/386)
|
|
162
|
+
* **sec-heading.js:** integrate mapAttributes() ([e1481d0](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e1481d0a3530d6259e84b0fd02424ba22a99f38d)), closes [#354](https://github.com/AmerMathSoc/ams-xml-to-html/issues/354)
|
|
163
|
+
* **secheading.js:** add data-ams-doc-level ([8f92d86](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8f92d8661cd376d53ab87100bfc1c43d58238da3)), closes [#322](https://github.com/AmerMathSoc/ams-xml-to-html/issues/322)
|
|
164
|
+
* **xref:** preserve ref-label attribute ([139c473](https://github.com/AmerMathSoc/ams-xml-to-html/commit/139c473bf9e4a01de0d88bcd05a435a201d9c21b)), closes [#272](https://github.com/AmerMathSoc/ams-xml-to-html/issues/272)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Bug Fixes
|
|
168
|
+
|
|
169
|
+
* remove duplicate viewport meta tag for books ([7550472](https://github.com/AmerMathSoc/ams-xml-to-html/commit/75504724b1e4548c769ce37dc838cf92be5a265b)), closes [#402](https://github.com/AmerMathSoc/ams-xml-to-html/issues/402)
|
|
170
|
+
|
|
171
|
+
## [11.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.15.1...v11.0.0) (2022-11-22)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### ⚠ BREAKING CHANGES
|
|
175
|
+
|
|
176
|
+
* No longer supports fs.read buffers // needs toString().
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
* upgrade linkedom@0.14.20 ([90f88de](https://github.com/AmerMathSoc/ams-xml-to-html/commit/90f88de74d375626d367826e28ab54903823d4c9)), closes [#394](https://github.com/AmerMathSoc/ams-xml-to-html/issues/394)
|
|
181
|
+
|
|
182
|
+
### [10.15.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.15.0...v10.15.1) (2022-11-18)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Bug Fixes
|
|
186
|
+
|
|
187
|
+
* **mapColorAttributes:** map border attributes ([a162a04](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a162a0407a05c4ffdd6d014821b40e917700b13e)), closes [#394](https://github.com/AmerMathSoc/ams-xml-to-html/issues/394)
|
|
188
|
+
|
|
189
|
+
## [10.15.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.14.0...v10.15.0) (2022-10-31)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Features
|
|
193
|
+
|
|
194
|
+
* support table-wrap-group ([ae9f47b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ae9f47b61c6a45553b6e3ce3dd3ec12f7075b417)), closes [#393](https://github.com/AmerMathSoc/ams-xml-to-html/issues/393)
|
|
195
|
+
|
|
196
|
+
## [10.14.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.13.1...v10.14.0) (2022-10-26)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Features
|
|
200
|
+
|
|
201
|
+
* revise setHead() ([f565d9c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f565d9c5c71554a2fb20781176ed5398d2d657bc)), closes [#391](https://github.com/AmerMathSoc/ams-xml-to-html/issues/391)
|
|
202
|
+
|
|
203
|
+
### [10.13.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.13.0...v10.13.1) (2022-10-24)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Bug Fixes
|
|
207
|
+
|
|
208
|
+
* **target.js:** don't escape text inside tex-math ([efc8a83](https://github.com/AmerMathSoc/ams-xml-to-html/commit/efc8a83ff36c9ad4408392b1f25b8bdfe65144dd)), closes [#392](https://github.com/AmerMathSoc/ams-xml-to-html/issues/392)
|
|
209
|
+
|
|
210
|
+
## [10.13.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.12.0...v10.13.0) (2022-09-22)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Features
|
|
214
|
+
|
|
215
|
+
* **hacks.js:** remove empty paragraphs ([98dd2af](https://github.com/AmerMathSoc/ams-xml-to-html/commit/98dd2af6b1c46a849a06782755e0fa8f5fa3f349)), closes [#388](https://github.com/AmerMathSoc/ams-xml-to-html/issues/388)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
* regressions due to table-wrap adoption ([fd3d321](https://github.com/AmerMathSoc/ams-xml-to-html/commit/fd3d321474f9432cf0df4a16d7a65196a4cd4828)), closes [#382](https://github.com/AmerMathSoc/ams-xml-to-html/issues/382) [#389](https://github.com/AmerMathSoc/ams-xml-to-html/issues/389)
|
|
221
|
+
|
|
222
|
+
## [10.12.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.11.1...v10.12.0) (2022-09-16)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Features
|
|
226
|
+
|
|
227
|
+
* **journal-meta:** adjust to texml change ([2ebf40b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2ebf40b0aef7606f6a1fe141d272352f9bafad2c)), closes [#386](https://github.com/AmerMathSoc/ams-xml-to-html/issues/386) [#382](https://github.com/AmerMathSoc/ams-xml-to-html/issues/382)
|
|
228
|
+
* support new MSC markup ([5058da4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5058da4ddb2bcb9417e60ef2b85d4ddb4c98f700)), closes [#386](https://github.com/AmerMathSoc/ams-xml-to-html/issues/386) [#382](https://github.com/AmerMathSoc/ams-xml-to-html/issues/382)
|
|
229
|
+
* support private-char ([2484923](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2484923c98d90534679fb9b6db724aec2daf7812)), closes [#386](https://github.com/AmerMathSoc/ams-xml-to-html/issues/386) [#382](https://github.com/AmerMathSoc/ams-xml-to-html/issues/382)
|
|
230
|
+
* support target inside tex-math ([bc69a59](https://github.com/AmerMathSoc/ams-xml-to-html/commit/bc69a59ef55ffae2690da2c385045e11e69f96db)), closes [#386](https://github.com/AmerMathSoc/ams-xml-to-html/issues/386) [#382](https://github.com/AmerMathSoc/ams-xml-to-html/issues/382)
|
|
231
|
+
* **table-wrap:** adjust to texml change ([7bdc46c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7bdc46c17be14c590cf824d9b460436b3a31715a)), closes [#386](https://github.com/AmerMathSoc/ams-xml-to-html/issues/386) [#382](https://github.com/AmerMathSoc/ams-xml-to-html/issues/382)
|
|
232
|
+
|
|
233
|
+
### [10.11.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.11.0...v10.11.1) (2022-09-09)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Bug Fixes
|
|
237
|
+
|
|
238
|
+
* **article.js:** check pubid and manid separately ([ddb819f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ddb819f31f0a6a867c901f63a77afdd84cdfcf6e)), closes [#384](https://github.com/AmerMathSoc/ams-xml-to-html/issues/384)
|
|
239
|
+
|
|
240
|
+
## [10.11.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.10.1...v10.11.0) (2022-09-09)
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Features
|
|
244
|
+
|
|
245
|
+
* **article.js:** keep manid / pubid separate ([0d5cb17](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0d5cb1707805e0bb1c09e99278c1342e51bbdc11)), closes [#383](https://github.com/AmerMathSoc/ams-xml-to-html/issues/383)
|
|
246
|
+
|
|
247
|
+
### [10.10.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.10.0...v10.10.1) (2022-08-17)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### Bug Fixes
|
|
251
|
+
|
|
252
|
+
* **formula.js:** nested formula handling ([fbd5861](https://github.com/AmerMathSoc/ams-xml-to-html/commit/fbd5861ac406ddb9cc72d34f76d752dff6886121)), closes [#378](https://github.com/AmerMathSoc/ams-xml-to-html/issues/378) [#379](https://github.com/AmerMathSoc/ams-xml-to-html/issues/379)
|
|
253
|
+
|
|
254
|
+
## [10.10.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.9.0...v10.10.0) (2022-08-17)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Features
|
|
258
|
+
|
|
259
|
+
* add hack to workaround flow content in P ([d149afb](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d149afb9985031ea954208ac1082e278db8aa398)), closes [texml#104](https://github.com/AmerMathSoc/texml/issues/104) [#377](https://github.com/AmerMathSoc/ams-xml-to-html/issues/377)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
### Bug Fixes
|
|
263
|
+
|
|
264
|
+
* **formula.js:** nested formula handling ([bd6249b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/bd6249b4977423c7b7ca88367d54bd522c72fb90)), closes [#378](https://github.com/AmerMathSoc/ams-xml-to-html/issues/378)
|
|
265
|
+
|
|
266
|
+
## [10.9.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.8.0...v10.9.0) (2022-08-02)
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Features
|
|
270
|
+
|
|
271
|
+
* revise fallback alt text for graphics ([924c2f6](https://github.com/AmerMathSoc/ams-xml-to-html/commit/924c2f61d5fa1f5c9abf30bfadf3eea391ca96e9)), closes [#375](https://github.com/AmerMathSoc/ams-xml-to-html/issues/375)
|
|
272
|
+
|
|
273
|
+
## [10.8.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.7.3...v10.8.0) (2022-06-29)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Features
|
|
277
|
+
|
|
278
|
+
* **graphic.js:** support graphics inside tex-math ([2eca6ba](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2eca6ba4d96d2981f6d2ff1a8ac910209c03a864)), closes [#376](https://github.com/AmerMathSoc/ams-xml-to-html/issues/376)
|
|
279
|
+
|
|
280
|
+
### [10.7.3](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.7.2...v10.7.3) (2022-06-22)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Bug Fixes
|
|
284
|
+
|
|
285
|
+
* **book-meta-json.js:** adjust to texml change ([6e2d56d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/6e2d56dbf3bf12ceffce1108443b76661afb40b6)), closes [#374](https://github.com/AmerMathSoc/ams-xml-to-html/issues/374)
|
|
286
|
+
|
|
287
|
+
### [10.7.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.7.1...v10.7.2) (2022-06-15)
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
### Bug Fixes
|
|
291
|
+
|
|
292
|
+
* **graphic.js:** fallback for unitless dimensions ([e5b0d9a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e5b0d9ad38396bc4e40176374eccd2daa55751c9)), closes [#373](https://github.com/AmerMathSoc/ams-xml-to-html/issues/373)
|
|
293
|
+
|
|
294
|
+
### [10.7.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.7.0...v10.7.1) (2022-05-19)
|
|
295
|
+
|
|
296
|
+
## [10.7.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.6.3...v10.7.0) (2022-05-12)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
### Features
|
|
300
|
+
|
|
301
|
+
* **mapAttributes.js:** preserve class attribute ([241e006](https://github.com/AmerMathSoc/ams-xml-to-html/commit/241e00676084cd96991f1346f683ba965fb18830)), closes [#371](https://github.com/AmerMathSoc/ams-xml-to-html/issues/371)
|
|
302
|
+
|
|
303
|
+
### [10.6.3](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.6.2...v10.6.3) (2022-04-29)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Bug Fixes
|
|
307
|
+
|
|
308
|
+
* **sc.js:** in tex-math, wrap \mathsc in $...$ ([b36d7e7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b36d7e7c637787ba76814a32460f1ed7869f2372)), closes [#370](https://github.com/AmerMathSoc/ams-xml-to-html/issues/370)
|
|
309
|
+
|
|
310
|
+
### [10.6.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.6.1...v10.6.2) (2022-04-25)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Bug Fixes
|
|
314
|
+
|
|
315
|
+
* **book-meta-json.js:** preserve author-comment ([babd06d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/babd06d6911b94d6df0aeaf230c2cea788f7ff22)), closes [#369](https://github.com/AmerMathSoc/ams-xml-to-html/issues/369)
|
|
316
|
+
|
|
317
|
+
### [10.6.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.6.0...v10.6.1) (2022-04-11)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
### Bug Fixes
|
|
321
|
+
|
|
322
|
+
* **helpers-tex:** escape & in text in TeX ([63b9470](https://github.com/AmerMathSoc/ams-xml-to-html/commit/63b94702a4bce255bfed01637095e97f97b83dc0)), closes [#368](https://github.com/AmerMathSoc/ams-xml-to-html/issues/368)
|
|
323
|
+
|
|
324
|
+
## [10.6.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.5.4...v10.6.0) (2022-04-01)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Features
|
|
328
|
+
|
|
329
|
+
* support alg:* elements ([f85a311](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f85a3112ce06b7126a85d1b394a966087fce7e80)), closes [#40](https://github.com/AmerMathSoc/ams-xml-to-html/issues/40)
|
|
330
|
+
|
|
331
|
+
### [10.5.4](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.5.3...v10.5.4) (2022-03-20)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Bug Fixes
|
|
335
|
+
|
|
336
|
+
* **xref.js:** remove leading space ([80e466b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/80e466bf82bbb8bd02bac5279aeef61b49e405f1)), closes [#365](https://github.com/AmerMathSoc/ams-xml-to-html/issues/365)
|
|
337
|
+
|
|
338
|
+
### [10.5.3](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.5.2...v10.5.3) (2022-03-18)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Bug Fixes
|
|
342
|
+
|
|
343
|
+
* **helpers-tex:** escape `~` ([9b5a9a6](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9b5a9a695fe5ad678f4482a512e9f1a7a2e33321)), closes [#363](https://github.com/AmerMathSoc/ams-xml-to-html/issues/363)
|
|
344
|
+
|
|
345
|
+
### [10.5.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.5.1...v10.5.2) (2022-03-18)
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
### Bug Fixes
|
|
349
|
+
|
|
350
|
+
* multiple TeX-escaping issues ([e2d0f60](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e2d0f607c812fe53df66d8540638e73e55dc2f0d)), closes [#363](https://github.com/AmerMathSoc/ams-xml-to-html/issues/363)
|
|
351
|
+
|
|
352
|
+
### [10.5.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.5.0...v10.5.1) (2022-03-14)
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
### Bug Fixes
|
|
356
|
+
|
|
357
|
+
* **roman.js:** replace textup with textrm ([ee33ebb](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ee33ebb00344db55562e47a67733c97ad268cc08)), closes [#362](https://github.com/AmerMathSoc/ams-xml-to-html/issues/362)
|
|
358
|
+
|
|
359
|
+
## [10.5.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.4.3...v10.5.0) (2022-03-14)
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
### Features
|
|
363
|
+
|
|
364
|
+
* support text-styling within tex-math ([115c27a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/115c27a08bab6e55b351914cfd6d6ce38f3c5419)), closes [#359](https://github.com/AmerMathSoc/ams-xml-to-html/issues/359)
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
### Bug Fixes
|
|
368
|
+
|
|
369
|
+
* **xref.js:** adjust to up&downstream changes ([fa1e6f0](https://github.com/AmerMathSoc/ams-xml-to-html/commit/fa1e6f07a9203c19a990aec4a1f19c8d7b3e5c42)), closes [#311](https://github.com/AmerMathSoc/ams-xml-to-html/issues/311)
|
|
370
|
+
|
|
371
|
+
### [10.4.3](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.4.2...v10.4.3) (2022-03-07)
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
### Bug Fixes
|
|
375
|
+
|
|
376
|
+
* upgrade linkedom ([4cb4091](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4cb4091947a3b9f5ab8d4744bd5786986759226d))
|
|
377
|
+
|
|
378
|
+
### [10.4.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.4.1...v10.4.2) (2022-03-02)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
### Bug Fixes
|
|
382
|
+
|
|
383
|
+
* revise wrapping $ handling ([1441ec8](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1441ec866524a782c80cf13ec6afb3b175f7be62)), closes [#358](https://github.com/AmerMathSoc/ams-xml-to-html/issues/358)
|
|
384
|
+
|
|
385
|
+
### [10.4.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.4.0...v10.4.1) (2022-03-02)
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
### Bug Fixes
|
|
389
|
+
|
|
390
|
+
* handle nested inline-formula elements ([77f0a64](https://github.com/AmerMathSoc/ams-xml-to-html/commit/77f0a64fa1c8aa241a8ece71cbaaae3462b18ab7)), closes [#356](https://github.com/AmerMathSoc/ams-xml-to-html/issues/356) [#357](https://github.com/AmerMathSoc/ams-xml-to-html/issues/357)
|
|
391
|
+
|
|
392
|
+
## [10.4.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.3.0...v10.4.0) (2022-03-02)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
### Features
|
|
396
|
+
|
|
397
|
+
* **text.js:** support tex-math inside text ([be0969a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/be0969aae16d8caf4265b783d428a9ea17b33b43)), closes [#356](https://github.com/AmerMathSoc/ams-xml-to-html/issues/356) [#340](https://github.com/AmerMathSoc/ams-xml-to-html/issues/340)
|
|
398
|
+
|
|
399
|
+
## [10.3.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.2.0...v10.3.0) (2022-03-01)
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Features
|
|
403
|
+
|
|
404
|
+
* **book-meta-json.js:** support collection metadata ([cce9739](https://github.com/AmerMathSoc/ams-xml-to-html/commit/cce9739bbdde18a5795b14415127d4cc19c6ca4c)), closes [#353](https://github.com/AmerMathSoc/ams-xml-to-html/issues/353)
|
|
405
|
+
|
|
406
|
+
## [10.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.1.1...v10.2.0) (2022-02-17)
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
### Features
|
|
410
|
+
|
|
411
|
+
* support subj-group & subject ([ce8ff45](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ce8ff45a851ceaca22cdfbb80a266e68d26e07b1)), closes [#355](https://github.com/AmerMathSoc/ams-xml-to-html/issues/355)
|
|
412
|
+
|
|
413
|
+
### [10.1.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.1.0...v10.1.1) (2022-02-11)
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
### Bug Fixes
|
|
417
|
+
|
|
418
|
+
* **fn.js:** multiple footnotes in ancestor ([cb77f1d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/cb77f1db5959e908514255b81cb54ce407d7dbde)), closes [#352](https://github.com/AmerMathSoc/ams-xml-to-html/issues/352)
|
|
419
|
+
|
|
420
|
+
## [10.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.0.0...v10.1.0) (2022-02-10)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
### Features
|
|
424
|
+
|
|
425
|
+
* support article subtitle ([f7eafec](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f7eafec889a5a81fe3c8eb230b04ac400aafc744)), closes [#351](https://github.com/AmerMathSoc/ams-xml-to-html/issues/351)
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
### Bug Fixes
|
|
429
|
+
|
|
430
|
+
* **mapColorAttributes:** default border width ([8b0ac9c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8b0ac9cfb6c839c8ee4fc42b4f5905643641e4fd)), closes [#346](https://github.com/AmerMathSoc/ams-xml-to-html/issues/346)
|
|
431
|
+
|
|
432
|
+
## [10.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v10.0.0-0...v10.0.0) (2022-02-04)
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
### Bug Fixes
|
|
436
|
+
|
|
437
|
+
* **text.js:** re-escape # ([f2a69cc](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f2a69ccce74b24c02d9b39e8133d6f6c72ce4b06)), closes [#345](https://github.com/AmerMathSoc/ams-xml-to-html/issues/345)
|
|
438
|
+
|
|
439
|
+
## [10.0.0-0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v9.0.1...v10.0.0-0) (2022-01-26)
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
### ⚠ BREAKING CHANGES
|
|
443
|
+
|
|
444
|
+
* remove (broken) CLI mode
|
|
445
|
+
* book metadata output is now a JSON blob.
|
|
446
|
+
|
|
447
|
+
### Features
|
|
448
|
+
|
|
449
|
+
* redesign book metadata ([3864eb9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/3864eb9f84a81229c919700fd320bb08bbb3912b)), closes [#254](https://github.com/AmerMathSoc/ams-xml-to-html/issues/254)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
### Bug Fixes
|
|
453
|
+
|
|
454
|
+
* unnest links within ext-link ([14f7426](https://github.com/AmerMathSoc/ams-xml-to-html/commit/14f742653939da6628552b72f259ba62898bd38b)), closes [#347](https://github.com/AmerMathSoc/ams-xml-to-html/issues/347)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
* fix!(ams-xml-to-html.js): remove (broken) CLI mode ([e26e967](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e26e96788cbc716713325d4f3b70f967697f4dbd))
|
|
458
|
+
|
|
459
|
+
### [9.0.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v9.0.0...v9.0.1) (2022-01-17)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
### Bug Fixes
|
|
463
|
+
|
|
464
|
+
* **footnote:** wrap footnote marker in superscript ([9962791](https://github.com/AmerMathSoc/ams-xml-to-html/commit/99627918725cd7aad3991787c4e00229ce400ada)), closes [#344](https://github.com/AmerMathSoc/ams-xml-to-html/issues/344)
|
|
465
|
+
|
|
466
|
+
## [9.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.10.0...v9.0.0) (2022-01-13)
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
### ⚠ BREAKING CHANGES
|
|
470
|
+
|
|
471
|
+
* footnote no longer drops its label.
|
|
472
|
+
* foonotes now `div` (instead of `span`) and moved out of ancestors.
|
|
473
|
+
|
|
474
|
+
### Features
|
|
475
|
+
|
|
476
|
+
* revise footnote handling ([46483d4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/46483d4e383aa60fe5993811b95edb3ddcee678b)), closes [#336](https://github.com/AmerMathSoc/ams-xml-to-html/issues/336)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
### Bug Fixes
|
|
480
|
+
|
|
481
|
+
* **label.js:** for ref, remove wrapping span ([1b2c9db](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1b2c9db7ce62d283b90a1fafc3fc9e7c571d7813)), closes [#343](https://github.com/AmerMathSoc/ams-xml-to-html/issues/343)
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
* feat!(label.js): preserve label in fn ([6b956f5](https://github.com/AmerMathSoc/ams-xml-to-html/commit/6b956f5b4b426a886a39996eb1182713da1e387a)), closes [#342](https://github.com/AmerMathSoc/ams-xml-to-html/issues/342)
|
|
485
|
+
|
|
486
|
+
## [8.10.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.9.1...v8.10.0) (2022-01-10)
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
### Features
|
|
490
|
+
|
|
491
|
+
* **fig:** improve attribute preservation ([04b1947](https://github.com/AmerMathSoc/ams-xml-to-html/commit/04b194756dd05098332d378b1311fc1f01441831)), closes [#339](https://github.com/AmerMathSoc/ams-xml-to-html/issues/339)
|
|
492
|
+
|
|
493
|
+
### [8.9.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.9.0...v8.9.1) (2021-12-17)
|
|
494
|
+
|
|
495
|
+
## [8.9.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.8.0...v8.9.0) (2021-12-10)
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
### Features
|
|
499
|
+
|
|
500
|
+
* handle xref and ext-link inside xref ([13489f7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/13489f76aa9cc045995a6d039302d4b583408142)), closes [#332](https://github.com/AmerMathSoc/ams-xml-to-html/issues/332)
|
|
501
|
+
|
|
502
|
+
## [8.8.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.7.0...v8.8.0) (2021-12-06)
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
### Features
|
|
506
|
+
|
|
507
|
+
* support tcolorbox output ([e187228](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e187228946d3b29dc3bcb5aee5c65bbbeccd1ffd)), closes [#334](https://github.com/AmerMathSoc/ams-xml-to-html/issues/334)
|
|
508
|
+
|
|
509
|
+
## [8.7.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.6.0...v8.7.0) (2021-12-03)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
### Features
|
|
513
|
+
|
|
514
|
+
* **sec-meta:** improve support in articles ([7d02f14](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7d02f1479461ba633015bde17d53f929fea4bcc3)), closes [#335](https://github.com/AmerMathSoc/ams-xml-to-html/issues/335)
|
|
515
|
+
|
|
516
|
+
## [8.6.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.5.0...v8.6.0) (2021-11-18)
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
### Features
|
|
520
|
+
|
|
521
|
+
* **styled-content:** support color attributes ([8cb0656](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8cb0656cf83ced2ccb994823086f6bed3febd9b5)), closes [#333](https://github.com/AmerMathSoc/ams-xml-to-html/issues/333)
|
|
522
|
+
|
|
523
|
+
## [8.5.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.4.0...v8.5.0) (2021-11-17)
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
### Features
|
|
527
|
+
|
|
528
|
+
* **ref-list.js:** support nested ref-list ([fa6f4b9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/fa6f4b9c5d5d7a6dee939dfd528d1fca11ab2e83)), closes [#331](https://github.com/AmerMathSoc/ams-xml-to-html/issues/331)
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
### Bug Fixes
|
|
532
|
+
|
|
533
|
+
* **fig.js:** drop explicit role ([bb4fe4c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/bb4fe4cad37586ba72efcc2ebc240c339f255532)), closes [#325](https://github.com/AmerMathSoc/ams-xml-to-html/issues/325)
|
|
534
|
+
|
|
535
|
+
## [8.4.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.3.1...v8.4.0) (2021-11-09)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
### Features
|
|
539
|
+
|
|
540
|
+
* **label.js:** check for trailing period ([1f85fa4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1f85fa4531c2c895a5a604a69739d068aaec5fe5)), closes [#310](https://github.com/AmerMathSoc/ams-xml-to-html/issues/310)
|
|
541
|
+
|
|
542
|
+
### [8.3.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.3.0...v8.3.1) (2021-11-09)
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
### Bug Fixes
|
|
546
|
+
|
|
547
|
+
* support all <notes> in articles ([8aed454](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8aed45453f08c499f51b82cad436ade486cba309)), closes [#329](https://github.com/AmerMathSoc/ams-xml-to-html/issues/329)
|
|
548
|
+
* **contrib:** check suffix for leading comma ([bffb948](https://github.com/AmerMathSoc/ams-xml-to-html/commit/bffb948005bceaa7fcc1feed023b3626f9bae0bc)), closes [#330](https://github.com/AmerMathSoc/ams-xml-to-html/issues/330)
|
|
549
|
+
|
|
550
|
+
## [8.3.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.2.0...v8.3.0) (2021-10-29)
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
### Features
|
|
554
|
+
|
|
555
|
+
* support multiple custom-meta elements ([65f7ac9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/65f7ac9637dd2459097cc67a33b1ecd316734e51)), closes [#324](https://github.com/AmerMathSoc/ams-xml-to-html/issues/324)
|
|
556
|
+
|
|
557
|
+
## [8.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.1.1...v8.2.0) (2021-10-26)
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
### Features
|
|
561
|
+
|
|
562
|
+
* **sec.js:** support refhead ([1ba27d4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1ba27d4086c3b2e512769a78436c61543d9ce59b)), closes [#328](https://github.com/AmerMathSoc/ams-xml-to-html/issues/328)
|
|
563
|
+
|
|
564
|
+
### [8.1.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.1.0...v8.1.1) (2021-10-01)
|
|
565
|
+
|
|
566
|
+
## [8.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.0.0...v8.1.0) (2021-09-30)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
### Features
|
|
570
|
+
|
|
571
|
+
* support <bio> ([5d1edb7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5d1edb79a67f1053e3d58319131b9b0023967bab)), closes [#323](https://github.com/AmerMathSoc/ams-xml-to-html/issues/323)
|
|
572
|
+
|
|
573
|
+
## [8.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v8.0.0-0...v8.0.0) (2021-09-29)
|
|
574
|
+
|
|
575
|
+
## [8.0.0-0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v7.5.0...v8.0.0-0) (2021-08-20)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
### ⚠ BREAKING CHANGES
|
|
579
|
+
|
|
580
|
+
* Switch from jsdom to linkedom #319
|
|
581
|
+
* ams-xml-to-html will no longer run via npx
|
|
582
|
+
|
|
583
|
+
### Features
|
|
584
|
+
|
|
585
|
+
* remove ability to call via npx ([46dfb12](https://github.com/AmerMathSoc/ams-xml-to-html/commit/46dfb12a969cc0c5e3e258b0a09bde5f746d28a0)), closes [#320](https://github.com/AmerMathSoc/ams-xml-to-html/issues/320)
|
|
586
|
+
* replace jsdom with linkedom ([d18a8ef](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d18a8efd8ac8b042e2da32127ed15157b996d340)), closes [#319](https://github.com/AmerMathSoc/ams-xml-to-html/issues/319)
|
|
587
|
+
|
|
588
|
+
## [7.5.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v7.4.0...v7.5.0) (2021-04-15)
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
### Features
|
|
592
|
+
|
|
593
|
+
* **article-id:** add MR number to MR link ([23799fa](https://github.com/AmerMathSoc/ams-xml-to-html/commit/23799fab9d1d7c817100bd5bffbfc077495f86ef)), closes [#316](https://github.com/AmerMathSoc/ams-xml-to-html/issues/316)
|
|
594
|
+
|
|
595
|
+
## [7.4.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v7.3.0...v7.4.0) (2021-02-25)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
### Features
|
|
599
|
+
|
|
600
|
+
* support simpletabbing, line ([347b2f1](https://github.com/AmerMathSoc/ams-xml-to-html/commit/347b2f1f11345fee245f8bd194b4968526a31414)), closes [#315](https://github.com/AmerMathSoc/ams-xml-to-html/issues/315)
|
|
601
|
+
|
|
602
|
+
## [7.3.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v7.2.0...v7.3.0) (2021-02-18)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
### Features
|
|
606
|
+
|
|
607
|
+
* **toc-entry.js:** revise alt-title handling ([7152007](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7152007cfa0c20fd8d6d9d1b9139727c9e9dc7c3)), closes [#314](https://github.com/AmerMathSoc/ams-xml-to-html/issues/314)
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
### Bug Fixes
|
|
611
|
+
|
|
612
|
+
* **toc-entry:** fix check for contribs. ([9657a1c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9657a1c9732f01d1da7f0bcfdf2e1bf45a19cc93))
|
|
613
|
+
|
|
614
|
+
## [7.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v7.1.0...v7.2.0) (2021-02-17)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
### Features
|
|
618
|
+
|
|
619
|
+
* **app.js:** add heuristics for acknowledgments ([d85f161](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d85f1617d4638bd4f851cd886973dbfed5d1ad52)), closes [#262](https://github.com/AmerMathSoc/ams-xml-to-html/issues/262)
|
|
620
|
+
* **toc-entry:** support contributor info ([97f64cd](https://github.com/AmerMathSoc/ams-xml-to-html/commit/97f64cd2061198f29e2749776f59989a4c3f022d)), closes [#312](https://github.com/AmerMathSoc/ams-xml-to-html/issues/312)
|
|
621
|
+
|
|
622
|
+
## [7.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v7.0.0...v7.1.0) (2020-12-14)
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
### Features
|
|
626
|
+
|
|
627
|
+
* support disp-formula-group ([7147ce3](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7147ce33056845ded4c42ba38c953ab4782c971d)), closes [#309](https://github.com/AmerMathSoc/ams-xml-to-html/issues/309)
|
|
628
|
+
|
|
629
|
+
## [7.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.10.0...v7.0.0) (2020-11-24)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
### ⚠ BREAKING CHANGES
|
|
633
|
+
|
|
634
|
+
* statement output changed from section to figure tags #222
|
|
635
|
+
|
|
636
|
+
### Features
|
|
637
|
+
|
|
638
|
+
* revise statement handling ([a613ab0](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a613ab0854efc602c5132d23e2aa97a2d7ff892b)), closes [#222](https://github.com/AmerMathSoc/ams-xml-to-html/issues/222)
|
|
639
|
+
|
|
640
|
+
## [6.10.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.9.0...v6.10.0) (2020-11-10)
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
### Features
|
|
644
|
+
|
|
645
|
+
* revise underline handling ([944f76d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/944f76d2618309c80fd831e6980746bda03f9794)), closes [#223](https://github.com/AmerMathSoc/ams-xml-to-html/issues/223)
|
|
646
|
+
|
|
647
|
+
## [6.9.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.8.0...v6.9.0) (2020-09-25)
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
### Features
|
|
651
|
+
|
|
652
|
+
* **article.js:** add data-ams-manid to titlepage ([99c3994](https://github.com/AmerMathSoc/ams-xml-to-html/commit/99c39947f3278321de3cbc9714e08bda5a572a8a)), closes [#269](https://github.com/AmerMathSoc/ams-xml-to-html/issues/269)
|
|
653
|
+
|
|
654
|
+
## [6.8.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.7.0...v6.8.0) (2020-09-22)
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
### Features
|
|
658
|
+
|
|
659
|
+
* **def-item:** always add wrapping div ([7948e3a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7948e3a4bf72fdf7ad3825c72dd904cd12f245de)), closes [#307](https://github.com/AmerMathSoc/ams-xml-to-html/issues/307)
|
|
660
|
+
|
|
661
|
+
## [6.7.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.6.1...v6.7.0) (2020-09-18)
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
### Features
|
|
665
|
+
|
|
666
|
+
* add table wrapper ([a550218](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a5502189f776cd13f069c6bb49f4e2d76ef4cf8a)), closes [#306](https://github.com/AmerMathSoc/ams-xml-to-html/issues/306)
|
|
667
|
+
|
|
668
|
+
### [6.6.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.6.0...v6.6.1) (2020-08-25)
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
### Bug Fixes
|
|
672
|
+
|
|
673
|
+
* **contrib.js:** preserve <suffix> ([3aa3ab3](https://github.com/AmerMathSoc/ams-xml-to-html/commit/3aa3ab3afe210582ab949b4841387c0db7ccdd81)), closes [#305](https://github.com/AmerMathSoc/ams-xml-to-html/issues/305)
|
|
674
|
+
|
|
675
|
+
## [6.6.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.5.1...v6.6.0) (2020-08-24)
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
### Features
|
|
679
|
+
|
|
680
|
+
* **label.js:** separate label and title ([0c118ca](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0c118ca02f2d0127c93f49c2944601ce6e80f1f6)), closes [#303](https://github.com/AmerMathSoc/ams-xml-to-html/issues/303)
|
|
681
|
+
|
|
682
|
+
### [6.5.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.5.0...v6.5.1) (2020-08-21)
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
### Bug Fixes
|
|
686
|
+
|
|
687
|
+
* **disp-quote:** epigraphs use content-type ([e673526](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e673526c64e7ad6e75d01ba38f7de3597a8c0492)), closes [#304](https://github.com/AmerMathSoc/ams-xml-to-html/issues/304)
|
|
688
|
+
|
|
689
|
+
## [6.5.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.4.1...v6.5.0) (2020-08-21)
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
### Features
|
|
693
|
+
|
|
694
|
+
* **disp-quote:** add role for epigraphs ([2152d70](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2152d70c65ef1377229116e028056560980ccbf2)), closes [#245](https://github.com/AmerMathSoc/ams-xml-to-html/issues/245)
|
|
695
|
+
|
|
696
|
+
### [6.4.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.4.0...v6.4.1) (2020-07-29)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
### Bug Fixes
|
|
700
|
+
|
|
701
|
+
* **pub-date.js:** handle missing received date ([5bf6c0a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5bf6c0a305f43844f1c8b13b983a8575cbcbfda8)), closes [#301](https://github.com/AmerMathSoc/ams-xml-to-html/issues/301)
|
|
702
|
+
|
|
703
|
+
## [6.4.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.3.1...v6.4.0) (2020-07-02)
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
### Features
|
|
707
|
+
|
|
708
|
+
* **toc.js:** preserve id ([e7d315d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e7d315d7beeb2c17abb578321870efb393f1ffa9)), closes [#298](https://github.com/AmerMathSoc/ams-xml-to-html/issues/298)
|
|
709
|
+
|
|
710
|
+
### [6.3.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.3.0...v6.3.1) (2020-07-01)
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
### Bug Fixes
|
|
714
|
+
|
|
715
|
+
* **toc-entry:** fix check for empty label ([0eac3d5](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0eac3d5c3248e2a076591b7326b48e336261e25d)), closes [#299](https://github.com/AmerMathSoc/ams-xml-to-html/issues/299)
|
|
716
|
+
* **toc-entry:** work around :scope bug ([868a9c4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/868a9c4f12e05ce2e7796e2096a7ba06724dcd23)), closes [#300](https://github.com/AmerMathSoc/ams-xml-to-html/issues/300)
|
|
717
|
+
* update test/element-articles.js ([e688f2a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e688f2a06e04117ce2c7576031ef2dbb3bb78564)), closes [#297](https://github.com/AmerMathSoc/ams-xml-to-html/issues/297)
|
|
718
|
+
|
|
719
|
+
## [6.3.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.2.0...v6.3.0) (2020-06-29)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
### Features
|
|
723
|
+
|
|
724
|
+
* support notes element (generally) ([e1234a7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e1234a7c87fabda9b116af2cf6e207146dac5325)), closes [#283](https://github.com/AmerMathSoc/ams-xml-to-html/issues/283) [#297](https://github.com/AmerMathSoc/ams-xml-to-html/issues/297)
|
|
725
|
+
|
|
726
|
+
## [6.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.1.1...v6.2.0) (2020-06-23)
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
### Features
|
|
730
|
+
|
|
731
|
+
* map specific-use="part" to role="doc-part" ([1bdb4a4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1bdb4a48c272a10c25278ecf871976b4d984b858)), closes [#296](https://github.com/AmerMathSoc/ams-xml-to-html/issues/296)
|
|
732
|
+
* support book-app-group, book-app ([54ef045](https://github.com/AmerMathSoc/ams-xml-to-html/commit/54ef0455547ed3ce9a470e6e55bf17a148f5bb0e)), closes [#280](https://github.com/AmerMathSoc/ams-xml-to-html/issues/280)
|
|
733
|
+
|
|
734
|
+
### [6.1.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.1.0...v6.1.1) (2020-06-22)
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
### Bug Fixes
|
|
738
|
+
|
|
739
|
+
* **xref.js:** tex-math/text/xref needs \text{} ([4ac0b4e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4ac0b4ea8aab282ae4789c2bad029554108b9e8e)), closes [#295](https://github.com/AmerMathSoc/ams-xml-to-html/issues/295)
|
|
740
|
+
|
|
741
|
+
## [6.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.0.2...v6.1.0) (2020-06-18)
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
### Features
|
|
745
|
+
|
|
746
|
+
* support boxed-text ([012fb9e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/012fb9e73ad7ace7acb2aefbabc5a14dd3b89231)), closes [#294](https://github.com/AmerMathSoc/ams-xml-to-html/issues/294)
|
|
747
|
+
|
|
748
|
+
### [6.0.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.0.1...v6.0.2) (2020-04-01)
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
### Bug Fixes
|
|
752
|
+
|
|
753
|
+
* don't throw on (some) missing metadata ([2c47fe5](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2c47fe5143f83837fda1fa016219a85bc45a9c35)), closes [#291](https://github.com/AmerMathSoc/ams-xml-to-html/issues/291)
|
|
754
|
+
|
|
755
|
+
### [6.0.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v6.0.0...v6.0.1) (2020-03-24)
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
### Bug Fixes
|
|
759
|
+
|
|
760
|
+
* **label.js:** data-ams-doc-alttitle should include label content ([4723367](https://github.com/AmerMathSoc/ams-xml-to-html/commit/472336717e71e6f72a704f52262b1d06a22d1839)), closes [#290](https://github.com/AmerMathSoc/ams-xml-to-html/issues/290)
|
|
761
|
+
|
|
762
|
+
## [6.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.2.0...v6.0.0) (2020-03-24)
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
### ⚠ BREAKING CHANGES
|
|
766
|
+
|
|
767
|
+
* removes XSL implementation
|
|
768
|
+
|
|
769
|
+
### Features
|
|
770
|
+
|
|
771
|
+
* support lang attribute on document root ([32691b8](https://github.com/AmerMathSoc/ams-xml-to-html/commit/32691b836d468aad6787ff4626a1052dc0411f51)), closes [#288](https://github.com/AmerMathSoc/ams-xml-to-html/issues/288)
|
|
772
|
+
* support sans-serif elements ([ee8265d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ee8265dc00872fd3c5ab69eb7007fdb7a00ab1c5)), closes [#285](https://github.com/AmerMathSoc/ams-xml-to-html/issues/285)
|
|
773
|
+
* **label.js:** preserve alt-title in books ([baaf62f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/baaf62ff8871df1c74ee6124baf7f37a724ab14f)), closes [#287](https://github.com/AmerMathSoc/ams-xml-to-html/issues/287)
|
|
774
|
+
* **toc-entry.js:** use alt-title in TOC ([5fa007f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5fa007fe76290bc340d97a49a44e6ea5caac7ffd)), closes [#284](https://github.com/AmerMathSoc/ams-xml-to-html/issues/284)
|
|
775
|
+
* remove XSL ([ee82700](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ee82700f938197406d884c54ce0a462fa7b1d134)), closes [#266](https://github.com/AmerMathSoc/ams-xml-to-html/issues/266)
|
|
776
|
+
|
|
777
|
+
## [5.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.1.0...v5.2.0) (2020-02-25)
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
### Features
|
|
781
|
+
|
|
782
|
+
* **contrib.js:** support string-name ([d3436e6](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d3436e6)), closes [#281](https://github.com/AmerMathSoc/ams-xml-to-html/issues/281)
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
## [5.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.9...v5.1.0) (2020-02-19)
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
### Features
|
|
790
|
+
|
|
791
|
+
* enable ams-xml-to-html.jsas main module ([e32ff13](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e32ff13)), closes [#282](https://github.com/AmerMathSoc/ams-xml-to-html/issues/282)
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
### [5.0.9](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.8...v5.0.9) (2020-02-06)
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
### Bug Fixes
|
|
799
|
+
|
|
800
|
+
* **fig.js:** check id before assigning ([df4ba0d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/df4ba0d)), closes [#278](https://github.com/AmerMathSoc/ams-xml-to-html/issues/278)
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
### [5.0.8](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.7...v5.0.8) (2020-02-06)
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
### Bug Fixes
|
|
808
|
+
|
|
809
|
+
* **book-meta.js:** process all contrib-groups ([7cf1a83](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7cf1a83)), closes [#276](https://github.com/AmerMathSoc/ams-xml-to-html/issues/276)
|
|
810
|
+
* **contrib.js:** ensure DT gets at least 1 DD ([be8f60b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/be8f60b)), closes [#277](https://github.com/AmerMathSoc/ams-xml-to-html/issues/277)
|
|
811
|
+
* **subtitle.js:** add level when in header ([f55ac29](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f55ac29)), closes [#275](https://github.com/AmerMathSoc/ams-xml-to-html/issues/275)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
### [5.0.7](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.6...v5.0.7) (2020-02-06)
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
### Bug Fixes
|
|
819
|
+
|
|
820
|
+
* **label.js:** call trim correctly ([b1c4fbc](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b1c4fbc)), closes [#273](https://github.com/AmerMathSoc/ams-xml-to-html/issues/273)
|
|
821
|
+
* **xref.js:** pass-trough inside toc-entry ([f68509a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f68509a)), closes [#271](https://github.com/AmerMathSoc/ams-xml-to-html/issues/271)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
### [5.0.6](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.5...v5.0.6) (2020-02-05)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
### Bug Fixes
|
|
829
|
+
|
|
830
|
+
* preserve hr ([ae40fc4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ae40fc4)), closes [#270](https://github.com/AmerMathSoc/ams-xml-to-html/issues/270)
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
### [5.0.5](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.4...v5.0.5) (2020-02-05)
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
### Bug Fixes
|
|
838
|
+
|
|
839
|
+
* **ams-xml-to-html.js:** set lang=en on html ([bff4307](https://github.com/AmerMathSoc/ams-xml-to-html/commit/bff4307)), closes [#268](https://github.com/AmerMathSoc/ams-xml-to-html/issues/268)
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
### [5.0.4](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.3...v5.0.4) (2020-02-04)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
### Bug Fixes
|
|
847
|
+
|
|
848
|
+
* **JS:** handle missing volume/issue ([1884e2d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1884e2d)), closes [#267](https://github.com/AmerMathSoc/ams-xml-to-html/issues/267)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
### [5.0.3](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.2...v5.0.3) (2020-02-03)
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
### Bug Fixes
|
|
856
|
+
|
|
857
|
+
* **ams-xml-to-html.js:** add #!/usr/bin/env node ([eb1c36a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/eb1c36a)), closes [#265](https://github.com/AmerMathSoc/ams-xml-to-html/issues/265)
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
### [5.0.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.1...v5.0.2) (2020-02-03)
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
### Bug Fixes
|
|
865
|
+
|
|
866
|
+
* enable "main" field (and npx) ([62502bd](https://github.com/AmerMathSoc/ams-xml-to-html/commit/62502bd)), closes [#264](https://github.com/AmerMathSoc/ams-xml-to-html/issues/264)
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
### [5.0.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.0...v5.0.1) (2020-02-03)
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
### Bug Fixes
|
|
874
|
+
|
|
875
|
+
* **package.json:** set "bin": "ams-xml-to-html.js" ([9aa9b42](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9aa9b42)), closes [#263](https://github.com/AmerMathSoc/ams-xml-to-html/issues/263)
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
## [5.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v5.0.0-0...v5.0.0) (2020-02-03)
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
## [5.0.0-0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v4.1.3...v5.0.0-0) (2020-01-30)
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
### Features
|
|
887
|
+
|
|
888
|
+
* revise appendix handling ([597ae25](https://github.com/AmerMathSoc/ams-xml-to-html/commit/597ae25)), closes [#260](https://github.com/AmerMathSoc/ams-xml-to-html/issues/260)
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
### BREAKING CHANGES
|
|
892
|
+
|
|
893
|
+
* in journals, changes section nesting for app-group+app
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
### [4.1.3](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v4.1.2...v4.1.3) (2020-01-16)
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
### Bug Fixes
|
|
901
|
+
|
|
902
|
+
* **preface.js:** preserve attributes ([0b60924](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0b60924)), closes [#258](https://github.com/AmerMathSoc/ams-xml-to-html/issues/258)
|
|
903
|
+
* **statement.js:** ensure valid level ([57cfa22](https://github.com/AmerMathSoc/ams-xml-to-html/commit/57cfa22)), closes [#257](https://github.com/AmerMathSoc/ams-xml-to-html/issues/257)
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
### [4.1.2](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v4.1.1...v4.1.2) (2020-01-16)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
### Bug Fixes
|
|
911
|
+
|
|
912
|
+
* support ref without label ([8234571](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8234571)), closes [#256](https://github.com/AmerMathSoc/ams-xml-to-html/issues/256)
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
### [4.1.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v4.1.0...v4.1.1) (2020-01-15)
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
## [4.1.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v4.0.1...v4.1.0) (2020-01-14)
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
### Features
|
|
924
|
+
|
|
925
|
+
* **book-meta:** expose book-volume-number ([8d12f13](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8d12f13)), closes [#253](https://github.com/AmerMathSoc/ams-xml-to-html/issues/253)
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
### [4.0.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v4.0.0...v4.0.1) (2020-01-07)
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
### Bug Fixes
|
|
933
|
+
|
|
934
|
+
* doc-level for abstract in XSL ([4750873](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4750873)), closes [#252](https://github.com/AmerMathSoc/ams-xml-to-html/issues/252)
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
## [4.0.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.6.0...v4.0.0) (2020-01-07)
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
### Bug Fixes
|
|
942
|
+
|
|
943
|
+
* abstact() ([5989d36](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5989d36))
|
|
944
|
+
* add toc-toc-entry test case ([79009d2](https://github.com/AmerMathSoc/ams-xml-to-html/commit/79009d2))
|
|
945
|
+
* article() remove duplicate ', ' after journalLocation ([63f42df](https://github.com/AmerMathSoc/ams-xml-to-html/commit/63f42df))
|
|
946
|
+
* change fallback title value ([5879bee](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5879bee))
|
|
947
|
+
* clean up whitespace in *-formula ([13d338b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/13d338b))
|
|
948
|
+
* contrib-group should create DD ([e766f31](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e766f31))
|
|
949
|
+
* disp-quote: move blockquote out of paragraphs ([62dbcba](https://github.com/AmerMathSoc/ams-xml-to-html/commit/62dbcba))
|
|
950
|
+
* DL should not be placed inside paragraph ([edd8240](https://github.com/AmerMathSoc/ams-xml-to-html/commit/edd8240))
|
|
951
|
+
* element-abstract-title.js ([515803e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/515803e))
|
|
952
|
+
* element-article-meta.js ([75e57db](https://github.com/AmerMathSoc/ams-xml-to-html/commit/75e57db))
|
|
953
|
+
* element-toc-toc-entry.js pass XSL and JS ([9cc6105](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9cc6105))
|
|
954
|
+
* email() fix check for next sibling ([edaa42e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/edaa42e))
|
|
955
|
+
* fix img alt-text ([b1dbcdf](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b1dbcdf))
|
|
956
|
+
* funding-statements should be wrapped in 1 DD ([7557915](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7557915))
|
|
957
|
+
* inline-formula less agressive regex ([3fecaef](https://github.com/AmerMathSoc/ams-xml-to-html/commit/3fecaef))
|
|
958
|
+
* inline-formula: ignore has-qed-box ([58fa420](https://github.com/AmerMathSoc/ams-xml-to-html/commit/58fa420))
|
|
959
|
+
* label(): fix sec-meta when label+title ([e230fae](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e230fae))
|
|
960
|
+
* move ams-meta-group to pass-through elements ([5296412](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5296412))
|
|
961
|
+
* nested p should look at output not input ([aeffe9d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/aeffe9d))
|
|
962
|
+
* nested toc-entries should remain nested ([778b7b3](https://github.com/AmerMathSoc/ams-xml-to-html/commit/778b7b3))
|
|
963
|
+
* pass element-inline-formula-disp-formula-tex-math in both JS and XSL ([eec8e76](https://github.com/AmerMathSoc/ams-xml-to-html/commit/eec8e76))
|
|
964
|
+
* preface data-ams-doc-level ([affb6d2](https://github.com/AmerMathSoc/ams-xml-to-html/commit/affb6d2))
|
|
965
|
+
* primary() description can be complex ([8a72585](https://github.com/AmerMathSoc/ams-xml-to-html/commit/8a72585))
|
|
966
|
+
* primary(): trim description element before processing ([ee55b5d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ee55b5d))
|
|
967
|
+
* pub-date: handle multiple revisions ([a127049](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a127049))
|
|
968
|
+
* publisher add pass-through ([2545a39](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2545a39))
|
|
969
|
+
* sec-meta in article ([c340cf5](https://github.com/AmerMathSoc/ams-xml-to-html/commit/c340cf5))
|
|
970
|
+
* sec() fix data-ams-doc-level for ack ([d066ac8](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d066ac8))
|
|
971
|
+
* sec() handle articles with parts ([0b90e64](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0b90e64))
|
|
972
|
+
* sec(): restrict header to subtitle ([7c4a81f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7c4a81f))
|
|
973
|
+
* setHead should add viewport meta for book ([379fe92](https://github.com/AmerMathSoc/ams-xml-to-html/commit/379fe92))
|
|
974
|
+
* setHead: actually attach charset meta tag ([6f02bec](https://github.com/AmerMathSoc/ams-xml-to-html/commit/6f02bec))
|
|
975
|
+
* setHead: add charset meta tag ([aa50102](https://github.com/AmerMathSoc/ams-xml-to-html/commit/aa50102))
|
|
976
|
+
* setHead: fix charset value ([39cee56](https://github.com/AmerMathSoc/ams-xml-to-html/commit/39cee56))
|
|
977
|
+
* simplify check for book ([f1f03ca](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f1f03ca))
|
|
978
|
+
* simplify createNode ([b104534](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b104534))
|
|
979
|
+
* switch head to match xslt ([0e9bbb0](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0e9bbb0))
|
|
980
|
+
* update package.json ([c4962e9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/c4962e9))
|
|
981
|
+
* various minor issues ([b2e4ea9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b2e4ea9))
|
|
982
|
+
* xref() xref in fn in tex-math ([d64ed07](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d64ed07))
|
|
983
|
+
* **article.xml:** add sec-meta example ([2d39441](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2d39441))
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
### Features
|
|
987
|
+
|
|
988
|
+
* add simple CLI ([d477c7c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d477c7c))
|
|
989
|
+
* add test for setHead ([75de4fa](https://github.com/AmerMathSoc/ams-xml-to-html/commit/75de4fa))
|
|
990
|
+
* move main.js into ams-xml-to-html.js ([6beed5f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/6beed5f))
|
|
991
|
+
* pass attribut-style.js ([9b0a374](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9b0a374))
|
|
992
|
+
* pass attribute-content-type.js ([330b5da](https://github.com/AmerMathSoc/ams-xml-to-html/commit/330b5da))
|
|
993
|
+
* pass attribute-has-qed-box.js ([23829c3](https://github.com/AmerMathSoc/ams-xml-to-html/commit/23829c3))
|
|
994
|
+
* pass attribute-hidden.js ([324679e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/324679e))
|
|
995
|
+
* pass attribute-rowspan-colspan.js ([605808d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/605808d))
|
|
996
|
+
* pass attribute-specific-use.js ([7f23975](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7f23975))
|
|
997
|
+
* pass element-abstract-title.js ([92929c0](https://github.com/AmerMathSoc/ams-xml-to-html/commit/92929c0))
|
|
998
|
+
* pass element-ams-meta-group.js ([342db06](https://github.com/AmerMathSoc/ams-xml-to-html/commit/342db06))
|
|
999
|
+
* pass element-article-citation.js ([5df3765](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5df3765))
|
|
1000
|
+
* pass element-article-js ([75a84dc](https://github.com/AmerMathSoc/ams-xml-to-html/commit/75a84dc))
|
|
1001
|
+
* pass element-article-meta.js ([363de28](https://github.com/AmerMathSoc/ams-xml-to-html/commit/363de28))
|
|
1002
|
+
* pass element-article.js ([f27b61c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f27b61c))
|
|
1003
|
+
* pass element-article.js ([eb89a7c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/eb89a7c))
|
|
1004
|
+
* pass element-attrib.js ([d04463a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d04463a))
|
|
1005
|
+
* pass element-back-app-grou-app.js ([2c4991a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2c4991a))
|
|
1006
|
+
* pass element-bold.js ([1717a4c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1717a4c))
|
|
1007
|
+
* pass element-book-meta-publisher.js ([d14d667](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d14d667))
|
|
1008
|
+
* pass element-book-meta.j ([ba2bb52](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ba2bb52))
|
|
1009
|
+
* pass element-book-meta.js ([d74a6d2](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d74a6d2))
|
|
1010
|
+
* pass element-book-preface.js ([b3d2f5e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b3d2f5e))
|
|
1011
|
+
* pass element-book-preface.js ([1e2cbe2](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1e2cbe2))
|
|
1012
|
+
* pass element-book-sec-meta.js ([4db9aae](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4db9aae))
|
|
1013
|
+
* pass element-book-title-group.js ([91ae522](https://github.com/AmerMathSoc/ams-xml-to-html/commit/91ae522))
|
|
1014
|
+
* pass element-book-title-group.js ([bdd1042](https://github.com/AmerMathSoc/ams-xml-to-html/commit/bdd1042))
|
|
1015
|
+
* pass element-book.js ([e2d5a9a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e2d5a9a))
|
|
1016
|
+
* pass element-break.js ([f6f6629](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f6f6629))
|
|
1017
|
+
* pass element-contrib-group.js, element-contrib.js ([ad82bd1](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ad82bd1))
|
|
1018
|
+
* pass element-copyright-statement.js ([c9b50cb](https://github.com/AmerMathSoc/ams-xml-to-html/commit/c9b50cb))
|
|
1019
|
+
* pass element-email.js ([a960d12](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a960d12))
|
|
1020
|
+
* pass element-ext-link.js ([7181024](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7181024))
|
|
1021
|
+
* pass element-fig-subfig-label.js ([ed89275](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ed89275))
|
|
1022
|
+
* pass element-fn.js ([82cf7ea](https://github.com/AmerMathSoc/ams-xml-to-html/commit/82cf7ea))
|
|
1023
|
+
* pass element-graphic-inline-graphic.js, element-img.js ([e6071c6](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e6071c6))
|
|
1024
|
+
* pass element-inline-formula-disp-formula-tex-math.js ([b26ac8c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b26ac8c))
|
|
1025
|
+
* pass element-italic.js ([183a0af](https://github.com/AmerMathSoc/ams-xml-to-html/commit/183a0af))
|
|
1026
|
+
* pass element-journal-meta ([c0fa4b3](https://github.com/AmerMathSoc/ams-xml-to-html/commit/c0fa4b3))
|
|
1027
|
+
* pass element-kwd-group-kwd.js ([1a6bbd2](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1a6bbd2))
|
|
1028
|
+
* pass element-mixed-citation.js ([0b6542f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0b6542f))
|
|
1029
|
+
* pass element-monospace, roman, sc, underline ([e797fc7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/e797fc7))
|
|
1030
|
+
* pass element-note-dedication ([c08aef1](https://github.com/AmerMathSoc/ams-xml-to-html/commit/c08aef1))
|
|
1031
|
+
* pass element-note-dedication ([4f50464](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4f50464))
|
|
1032
|
+
* pass element-p-p.js, element-def-list-def-item-def-term ([802ef8e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/802ef8e))
|
|
1033
|
+
* pass element-pub-date-date.js ([059b787](https://github.com/AmerMathSoc/ams-xml-to-html/commit/059b787))
|
|
1034
|
+
* pass element-ref-list-ref-label.js, element-book-ref-list.js ([7c3f541](https://github.com/AmerMathSoc/ams-xml-to-html/commit/7c3f541))
|
|
1035
|
+
* pass element-sec-app-front-matter-part-dedication-title-label.js ([67cfa78](https://github.com/AmerMathSoc/ams-xml-to-html/commit/67cfa78))
|
|
1036
|
+
* pass element-self-uri.js ([0b574cf](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0b574cf))
|
|
1037
|
+
* pass element-statement-label-title.js ([d0e5009](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d0e5009))
|
|
1038
|
+
* pass element-string-name.js ([0814b0b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/0814b0b))
|
|
1039
|
+
* pass element-stripEmptyLabel.js ([59dac45](https://github.com/AmerMathSoc/ams-xml-to-html/commit/59dac45))
|
|
1040
|
+
* pass element-styled-content.js ([246863a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/246863a))
|
|
1041
|
+
* pass element-target.js ([1fab624](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1fab624))
|
|
1042
|
+
* pass element-toc-toc-entry.js ([760206f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/760206f))
|
|
1043
|
+
* pass element-verse-group.js ([ddb24ba](https://github.com/AmerMathSoc/ams-xml-to-html/commit/ddb24ba))
|
|
1044
|
+
* pass element-xref.js ([1537117](https://github.com/AmerMathSoc/ams-xml-to-html/commit/1537117))
|
|
1045
|
+
* pass elemnt-funding-group.js ([aec1f9a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/aec1f9a))
|
|
1046
|
+
* pass elment-disp-quote.js ([59f0250](https://github.com/AmerMathSoc/ams-xml-to-html/commit/59f0250))
|
|
1047
|
+
* pass-through x in books ([05bcf3b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/05bcf3b)), closes [#250](https://github.com/AmerMathSoc/ams-xml-to-html/issues/250)
|
|
1048
|
+
* refactoring into modules ([a6866a7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a6866a7))
|
|
1049
|
+
* reimplement sec() level calculation ([a037daa](https://github.com/AmerMathSoc/ams-xml-to-html/commit/a037daa))
|
|
1050
|
+
* sec-meta - adjust to upstream changes ([3929728](https://github.com/AmerMathSoc/ams-xml-to-html/commit/3929728)), closes [#249](https://github.com/AmerMathSoc/ams-xml-to-html/issues/249)
|
|
1051
|
+
* support element cite-group ([27f8484](https://github.com/AmerMathSoc/ams-xml-to-html/commit/27f8484))
|
|
1052
|
+
* support kwd-group, kwd properly ([5923c16](https://github.com/AmerMathSoc/ams-xml-to-html/commit/5923c16))
|
|
1053
|
+
* support pre elements ([76a7397](https://github.com/AmerMathSoc/ams-xml-to-html/commit/76a7397))
|
|
1054
|
+
* **statement:** add period to proof title&lable ([32a736c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/32a736c)), closes [#243](https://github.com/AmerMathSoc/ams-xml-to-html/issues/243)
|
|
1055
|
+
* publisher-name, publisher-loc ([68e1fcd](https://github.com/AmerMathSoc/ams-xml-to-html/commit/68e1fcd))
|
|
1056
|
+
* ref-list, (partially) title, mapAttributes ([2e9bc9f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2e9bc9f))
|
|
1057
|
+
* support sup, sub ([82b7c62](https://github.com/AmerMathSoc/ams-xml-to-html/commit/82b7c62))
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
### BREAKING CHANGES
|
|
1061
|
+
|
|
1062
|
+
* adjusts to breaking change in texml.
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
## [3.6.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.5.0...v3.6.0) (2019-11-11)
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
### Features
|
|
1070
|
+
|
|
1071
|
+
* **statement:** add period to proof title&lable ([60c2c7a](https://github.com/AmerMathSoc/ams-xml-to-html/commit/60c2c7a)), closes [#243](https://github.com/AmerMathSoc/ams-xml-to-html/issues/243)
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
## [3.5.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.4.0...v3.5.0) (2019-10-31)
|
|
1076
|
+
|
|
1077
|
+
|
|
1078
|
+
### Features
|
|
1079
|
+
|
|
1080
|
+
* support hidden attribute ([afb568d](https://github.com/AmerMathSoc/ams-xml-to-html/commit/afb568d)), closes [#241](https://github.com/AmerMathSoc/ams-xml-to-html/issues/241)
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
## [3.4.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.3.2-0...v3.4.0) (2019-10-30)
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
### Features
|
|
1088
|
+
|
|
1089
|
+
* xref/x generalize pass through ([27c6257](https://github.com/AmerMathSoc/ams-xml-to-html/commit/27c6257)), closes [#240](https://github.com/AmerMathSoc/ams-xml-to-html/issues/240)
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
### [3.3.2-0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.3.1...v3.3.2-0) (2019-10-02)
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
### Bug Fixes
|
|
1097
|
+
|
|
1098
|
+
* revise statement/title, statement/label ([cccc023](https://github.com/AmerMathSoc/ams-xml-to-html/commit/cccc023)), closes [#239](https://github.com/AmerMathSoc/ams-xml-to-html/issues/239)
|
|
1099
|
+
* statement heading level in book with part ([4eaf7a8](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4eaf7a8)), closes [#238](https://github.com/AmerMathSoc/ams-xml-to-html/issues/238)
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
### [3.3.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.3.1-1...v3.3.1) (2019-09-17)
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
|
|
1107
|
+
### [3.3.1-1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.3.1-0...v3.3.1-1) (2019-09-13)
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
### Bug Fixes
|
|
1111
|
+
|
|
1112
|
+
* **ref-list/ref:** avoid invalid dd-in-dt nesting ([245e786](https://github.com/AmerMathSoc/ams-xml-to-html/commit/245e786)), closes [#234](https://github.com/AmerMathSoc/ams-xml-to-html/issues/234)
|
|
1113
|
+
* **xref@ref-type='bibr'/x:** restore pass-through ([fdaf124](https://github.com/AmerMathSoc/ams-xml-to-html/commit/fdaf124)), closes [#235](https://github.com/AmerMathSoc/ams-xml-to-html/issues/235)
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
### [3.3.1-0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.3.0...v3.3.1-0) (2019-09-12)
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
### Bug Fixes
|
|
1121
|
+
|
|
1122
|
+
* remove dead code article-meta/title-group ([4e62231](https://github.com/AmerMathSoc/ams-xml-to-html/commit/4e62231)), closes [#233](https://github.com/AmerMathSoc/ams-xml-to-html/issues/233)
|
|
1123
|
+
* tex-math//text/xref remove newlines ([9a98440](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9a98440))
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
## [3.3.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.2.0...v3.3.0) (2019-08-14)
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
### Features
|
|
1131
|
+
|
|
1132
|
+
* **book-meta:** preserve publ_key ([d4f65e4](https://github.com/AmerMathSoc/ams-xml-to-html/commit/d4f65e4)), closes [#230](https://github.com/AmerMathSoc/ams-xml-to-html/issues/230)
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
## [3.2.0](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.1.1...v3.2.0) (2019-07-31)
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
### Bug Fixes
|
|
1140
|
+
|
|
1141
|
+
* **label:** ignore (some) empty labels ([b2ff3c7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b2ff3c7)), closes [#226](https://github.com/AmerMathSoc/ams-xml-to-html/issues/226)
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
### Features
|
|
1145
|
+
|
|
1146
|
+
* **fig:** wrap subfigure labels in parentheses ([9df3c53](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9df3c53)), closes [#227](https://github.com/AmerMathSoc/ams-xml-to-html/issues/227)
|
|
1147
|
+
* **tests:** add initial test suite setup ([79baa46](https://github.com/AmerMathSoc/ams-xml-to-html/commit/79baa46)), closes [#226](https://github.com/AmerMathSoc/ams-xml-to-html/issues/226) [#202](https://github.com/AmerMathSoc/ams-xml-to-html/issues/202)
|
|
1148
|
+
* **tests:** revise helper.js ([04d1d08](https://github.com/AmerMathSoc/ams-xml-to-html/commit/04d1d08)), closes [#228](https://github.com/AmerMathSoc/ams-xml-to-html/issues/228)
|
|
1149
|
+
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
### [3.1.1](https://github.com/AmerMathSoc/ams-xml-to-html/compare/v3.1.0...v3.1.1) (2019-07-16)
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
### Bug Fixes
|
|
1156
|
+
|
|
1157
|
+
* p//p template should exclude nested def-list ([b630af8](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b630af8)), closes [#225](https://github.com/AmerMathSoc/ams-xml-to-html/issues/225)
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
## 3.1.0 (2019-07-08)
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
### Features
|
|
1165
|
+
|
|
1166
|
+
* automate releases ([b03708e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b03708e)), closes [#224](https://github.com/AmerMathSoc/ams-xml-to-html/issues/224)
|
|
1167
|
+
* preserve graphic dimensions ([42223e9](https://github.com/AmerMathSoc/ams-xml-to-html/commit/42223e9)), closes [#221](https://github.com/AmerMathSoc/ams-xml-to-html/issues/221)
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
## 3.0.0 (2019-05-20)
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
## 3.0.0-3 (2019-05-16)
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
### Features
|
|
1179
|
+
|
|
1180
|
+
* rename to ams-xml-to-html ([17f7d64](https://github.com/AmerMathSoc/ams-xml-to-html/commit/17f7d64)), closes [#117](https://github.com/AmerMathSoc/ams-xml-to-html/issues/117)
|
|
1181
|
+
* revise data attributes ([764037f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/764037f)), closes [#216](https://github.com/AmerMathSoc/ams-xml-to-html/issues/216) [#219](https://github.com/AmerMathSoc/ams-xml-to-html/issues/219)
|
|
1182
|
+
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
## 3.0.0-2 (2019-05-10)
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
### Features
|
|
1189
|
+
|
|
1190
|
+
* data-ams-doc=chapter => role=doc-chapter ([80e3719](https://github.com/AmerMathSoc/ams-xml-to-html/commit/80e3719)), closes [#215](https://github.com/AmerMathSoc/ams-xml-to-html/issues/215) [#218](https://github.com/AmerMathSoc/ams-xml-to-html/issues/218)
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
### BREAKING CHANGES
|
|
1194
|
+
|
|
1195
|
+
* changes data attribute
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
## 3.0.0-1 (2019-05-10)
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
### Features
|
|
1203
|
+
|
|
1204
|
+
* revise data-type attributes ([40fd04b](https://github.com/AmerMathSoc/ams-xml-to-html/commit/40fd04b)), closes [#215](https://github.com/AmerMathSoc/ams-xml-to-html/issues/215)
|
|
1205
|
+
|
|
1206
|
+
|
|
1207
|
+
### BREAKING CHANGES
|
|
1208
|
+
|
|
1209
|
+
*
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
## 2.16.0 (2019-04-09)
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
### Features
|
|
1217
|
+
|
|
1218
|
+
* **figures:** support [@position](https://github.com/position) ([f9fd039](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f9fd039)), closes [#210](https://github.com/AmerMathSoc/ams-xml-to-html/issues/210)
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
### 2.15.4 (2019-04-03)
|
|
1223
|
+
|
|
1224
|
+
|
|
1225
|
+
### Bug Fixes
|
|
1226
|
+
|
|
1227
|
+
* turn fn//p to span ([63a2f05](https://github.com/AmerMathSoc/ams-xml-to-html/commit/63a2f05)), closes [#214](https://github.com/AmerMathSoc/ams-xml-to-html/issues/214)
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
### 2.15.3 (2019-04-02)
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
### Bug Fixes
|
|
1235
|
+
|
|
1236
|
+
* label[generic] should not process attributes ([3d9bf5f](https://github.com/AmerMathSoc/ams-xml-to-html/commit/3d9bf5f)), closes [#212](https://github.com/AmerMathSoc/ams-xml-to-html/issues/212)
|
|
1237
|
+
* strip nested p tags ([9cdaac7](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9cdaac7)), closes [#213](https://github.com/AmerMathSoc/ams-xml-to-html/issues/213)
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
|
|
1241
|
+
### 2.15.2 (2019-03-29)
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
### Bug Fixes
|
|
1245
|
+
|
|
1246
|
+
* **article-citation:** use code tag ([034b890](https://github.com/AmerMathSoc/ams-xml-to-html/commit/034b890)), closes [#211](https://github.com/AmerMathSoc/ams-xml-to-html/issues/211)
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
### 2.15.1 (2019-03-29)
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
### Bug Fixes
|
|
1254
|
+
|
|
1255
|
+
* **tex-math:** handle text descendants ([704d4d6](https://github.com/AmerMathSoc/ams-xml-to-html/commit/704d4d6)), closes [#209](https://github.com/AmerMathSoc/ams-xml-to-html/issues/209)
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
## 2.15.0 (2019-03-25)
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
### Bug Fixes
|
|
1263
|
+
|
|
1264
|
+
* do not strip [@colspan](https://github.com/colspan), [@rowspan](https://github.com/rowspan) ([b4cf64e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/b4cf64e)), closes [#207](https://github.com/AmerMathSoc/ams-xml-to-html/issues/207)
|
|
1265
|
+
* enable complex content in label ([21aac98](https://github.com/AmerMathSoc/ams-xml-to-html/commit/21aac98)), closes [#206](https://github.com/AmerMathSoc/ams-xml-to-html/issues/206)
|
|
1266
|
+
* turn dedication into div ([2134f6c](https://github.com/AmerMathSoc/ams-xml-to-html/commit/2134f6c)), closes [#204](https://github.com/AmerMathSoc/ams-xml-to-html/issues/204)
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
### Features
|
|
1270
|
+
|
|
1271
|
+
* **mixed-citation:** use code for raw-citation ([f892a16](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f892a16)), closes [#205](https://github.com/AmerMathSoc/ams-xml-to-html/issues/205)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
### 2.14.1 (2019-03-20)
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
### Bug Fixes
|
|
1279
|
+
|
|
1280
|
+
* **bibliography:** remove [@id](https://github.com/id) from template ([84a943e](https://github.com/AmerMathSoc/ams-xml-to-html/commit/84a943e)), closes [#203](https://github.com/AmerMathSoc/ams-xml-to-html/issues/203)
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
|
|
1284
|
+
## 2.14.0 (2019-02-14)
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
### Features
|
|
1288
|
+
|
|
1289
|
+
* add template for xref[not([@rid](https://github.com/rid))] ([9c17b23](https://github.com/AmerMathSoc/ams-xml-to-html/commit/9c17b23)), closes [#201](https://github.com/AmerMathSoc/ams-xml-to-html/issues/201)
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
## 2.13.0 (2019-02-07)
|
|
1294
|
+
|
|
1295
|
+
|
|
1296
|
+
### Features
|
|
1297
|
+
|
|
1298
|
+
* support footnotes in tex-math ([f97d534](https://github.com/AmerMathSoc/ams-xml-to-html/commit/f97d534)), closes [#200](https://github.com/AmerMathSoc/ams-xml-to-html/issues/200)
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
### 2.12.4 (2019-01-23)
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
### 2.12.3 (2019-01-22)
|
|
1307
|
+
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
### 2.12.2 (2019-01-16)
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
### 2.12.1 (2019-01-10)
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
## 2.12.0 (2018-12-11)
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
### 2.11.4 (2018-11-28)
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
|
|
1326
|
+
### 2.11.3 (2018-11-28)
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
### 2.11.2 (2018-11-26)
|
|
1331
|
+
|
|
1332
|
+
|
|
1333
|
+
|
|
1334
|
+
### 2.11.1 (2018-11-22)
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
## 2.11.0 (2018-11-13)
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
## 2.10.0 (2018-11-12)
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
## 2.9.0 (2018-11-07)
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
## 2.8.0 (2018-11-06)
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
## 2.7.0 (2018-11-05)
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
|
|
1358
|
+
## 2.6.0 (2018-10-30)
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
### 2.5.1 (2018-10-30)
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
## 2.5.0 (2018-10-25)
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
## 2.4.0 (2018-10-19)
|
|
1371
|
+
|
|
1372
|
+
|
|
1373
|
+
|
|
1374
|
+
## 2.3.0 (2018-09-24)
|
|
1375
|
+
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
## 2.2.0 (2018-09-11)
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
## 2.1.0 (2018-09-06)
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
## 2.0.0 (2018-09-05)
|
|
1387
|
+
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
## 1.4.0 (2018-07-24)
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
## 1.3.0 (2018-07-18)
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
|
|
1398
|
+
## 1.2.0 (2018-05-29)
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
|
|
1402
|
+
## 1.2.0-alpha (2018-05-29)
|
|
1403
|
+
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
### 1.1.1 (2018-05-09)
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
## 1.1.0 (2018-04-19)
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
## 1.0.0 (2018-01-04)
|