@baiyibai-antora/extensions 1.19.0 → 1.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.adoc
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
All notable changes to this project will be documented in this file.
|
|
5
5
|
|
|
6
|
+
== [1.19.1] - 2026-09-01
|
|
7
|
+
|
|
8
|
+
=== Fixed
|
|
9
|
+
|
|
10
|
+
* cite-it: citeproc-js expands a real trademark (™) or service mark (℠) character found in ANY `.bib` field (title, publisher, container-title, confirmed directly, not title-only) into `<sup>TM</sup>`/`<sup>SM</sup>` in its own output, in both bundled styles, unconditionally, losing the real character entirely: `htmlEntryToAsciiDoc`'s own generic `<sup>` handling then faithfully preserved citeproc's literal "TM"/"SM" text instead of the real character it replaced. A document's own real ™ silently became different, differently-searchable text in the rendered bibliography, independent of the `superscript_symbols` setting, reported directly against a real title. `htmlEntryToAsciiDoc` now recognizes citeproc's own `<sup>TM</sup>`/`<sup>SM</sup>` shape specifically and restores the real character, still wrapped in AsciiDoc superscript markup, unconditionally, a data-fidelity fix independent of `superscript_symbols`. `superscriptTrademarkSymbols` (the opt-in pass covering ®/©, which citeproc never touches) no longer matches ™/℠ at all, avoiding a double-wrap of the now-already-restored character when `superscript_symbols` is enabled.
|
|
11
|
+
|
|
6
12
|
== [1.19.0] - 2026-08-31
|
|
7
13
|
|
|
8
14
|
=== Added
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"csl.d.ts","sourceRoot":"","sources":["../../../src/extensions/cite-it/csl.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAMH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAK9C;;;;;;;;;;;;GAYG;AACH,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,aAAa,CAAC;AAOvD;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,cAAc,CAQnE;AAqFD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"csl.d.ts","sourceRoot":"","sources":["../../../src/extensions/cite-it/csl.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAMH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAK9C;;;;;;;;;;;;GAYG;AACH,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,aAAa,CAAC;AAOvD;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,cAAc,CAQnE;AAqFD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAiC7D;AA6HD,wBAAgB,yBAAyB,CACvC,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,EAC/B,IAAI,EAAE,MAAM,EAAE,EACd,eAAe,UAAQ,EACvB,kBAAkB,UAAQ,EAC1B,UAAU,SAAK,GACd,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CA2CrB"}
|
|
@@ -200,26 +200,61 @@ function htmlEntryToAsciiDoc(entryHtml) {
|
|
|
200
200
|
const withAsciidocMarkup = inner
|
|
201
201
|
.replace(/<i>([\s\S]*?)<\/i>/g, '_$1_')
|
|
202
202
|
.replace(/<b>([\s\S]*?)<\/b>/g, '*$1*')
|
|
203
|
+
// citeproc's own <sup>TM</sup>/<sup>SM</sup> is its own internal
|
|
204
|
+
// expansion of a real trademark (™) or service mark (℠) character
|
|
205
|
+
// found in the source data, in ANY field (title, publisher,
|
|
206
|
+
// container-title, confirmed directly, not title-only), never
|
|
207
|
+
// literal ASCII text a .bib entry actually wrote. Left to the
|
|
208
|
+
// generic <sup> rule below, which only knows to preserve whatever
|
|
209
|
+
// text citeproc put inside the tag, the real character is
|
|
210
|
+
// permanently lost, replaced by the plain letters "TM"/"SM": a real
|
|
211
|
+
// reported regression, a document's own real ™ silently became
|
|
212
|
+
// different, differently-searchable text in the rendered output.
|
|
213
|
+
// Restored here to the real character it always was, wrapped in
|
|
214
|
+
// AsciiDoc superscript markup the same way citeproc's own <sup>
|
|
215
|
+
// wrapping intended, unconditionally: this is a data-fidelity fix,
|
|
216
|
+
// not gated by superscript_symbols, the same "renders exactly as
|
|
217
|
+
// written" standard escapeAsciidocReplacements already holds
|
|
218
|
+
// .bib-derived text to below. superscriptTrademarkSymbols's own
|
|
219
|
+
// later, opt-in pass no longer touches ™/℠ at all (see its own
|
|
220
|
+
// docblock): this replacement already runs unconditionally, and
|
|
221
|
+
// running both would double-wrap.
|
|
222
|
+
.replace(/<sup>TM<\/sup>/g, '^™^')
|
|
223
|
+
.replace(/<sup>SM<\/sup>/g, '^℠^')
|
|
203
224
|
.replace(/<sup>([\s\S]*?)<\/sup>/g, '^$1^')
|
|
204
225
|
.replace(/<[^>]+>/g, '');
|
|
205
226
|
const plain = decodeEntities(withAsciidocMarkup).replace(/\s+/g, ' ').trim();
|
|
206
227
|
return (0, asciidoc_replacements_1.escapeAsciidocReplacements)(plain);
|
|
207
228
|
}
|
|
208
229
|
/**
|
|
209
|
-
* Wraps each
|
|
210
|
-
*
|
|
211
|
-
*
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
*
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
*
|
|
230
|
+
* Wraps each registered (®) and copyright (©) symbol found in `text` in
|
|
231
|
+
* AsciiDoc superscript markup, so it renders raised rather than sitting
|
|
232
|
+
* on the baseline. The symbol itself is data inside a `.bib` field
|
|
233
|
+
* (almost always a title, e.g. a product name), never something the CSL
|
|
234
|
+
* style has special handling for; this runs as a post-process over the
|
|
235
|
+
* already-formatted AsciiDoc text, the same shape blanketPubstate's own
|
|
236
|
+
* append already uses, rather than touching the style file. Verified
|
|
237
|
+
* directly against a real Asciidoctor conversion: the constrained
|
|
238
|
+
* single-caret form (`^®^`) renders correctly immediately adjacent to a
|
|
239
|
+
* preceding word character ("Widget^®^"), no space or unconstrained
|
|
240
|
+
* double-caret form needed.
|
|
241
|
+
*
|
|
242
|
+
* Deliberately does NOT match ™/℠ (unlike an earlier version of this
|
|
243
|
+
* function): those are already unconditionally restored to real
|
|
244
|
+
* characters, already wrapped in superscript markup, by
|
|
245
|
+
* `htmlEntryToAsciiDoc` itself, before this function ever runs (see its
|
|
246
|
+
* own docblock). A ™/℠ branch here would re-match the same character
|
|
247
|
+
* sitting inside that already-inserted `^...^` wrapper and double-wrap
|
|
248
|
+
* it (`^^™^^`), confirmed as the mechanism behind a real reported
|
|
249
|
+
* regression once `htmlEntryToAsciiDoc`'s own restoration stopped being
|
|
250
|
+
* silently defeated by citeproc's `<sup>TM</sup>`/`<sup>SM</sup>`
|
|
251
|
+
* character loss. ®/© never receive that citeproc-side treatment at all
|
|
252
|
+
* (confirmed directly, real characters pass through citeproc untouched
|
|
253
|
+
* in every field), so this function staying gated behind
|
|
254
|
+
* `superscript_symbols` remains correct for them specifically.
|
|
220
255
|
*/
|
|
221
256
|
function superscriptTrademarkSymbols(text) {
|
|
222
|
-
return text.replace(/([
|
|
257
|
+
return text.replace(/([®©])/gu, '^$1^');
|
|
223
258
|
}
|
|
224
259
|
/**
|
|
225
260
|
* Format bibliography-entry text for a set of CSL-JSON items, keyed by
|
|
@@ -236,9 +271,12 @@ function superscriptTrademarkSymbols(text) {
|
|
|
236
271
|
* render it.
|
|
237
272
|
*
|
|
238
273
|
* `superscriptSymbols`: cite-it's `superscript_symbols` config option
|
|
239
|
-
* (index.ts), threaded through so
|
|
240
|
-
* title, typically)
|
|
241
|
-
* inline text.
|
|
274
|
+
* (index.ts), threaded through so ® and © inside the formatted text (a
|
|
275
|
+
* title, typically) render as AsciiDoc superscript rather than plain
|
|
276
|
+
* inline text. ™ and ℠ are unaffected by this flag: `htmlEntryToAsciiDoc`
|
|
277
|
+
* already renders those as AsciiDoc superscript unconditionally, restoring
|
|
278
|
+
* the real character citeproc's own `<sup>TM</sup>`/`<sup>SM</sup>`
|
|
279
|
+
* output would otherwise silently replace with plain "TM"/"SM" text.
|
|
242
280
|
*/
|
|
243
281
|
/** "in preparation" -> "In preparation", matching the style's own
|
|
244
282
|
* `text-case="capitalize-first"` treatment of the same CSL `status`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"csl.js","sourceRoot":"","sources":["../../../src/extensions/cite-it/csl.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCH,8CAQC;AAmHD,
|
|
1
|
+
{"version":3,"file":"csl.js","sourceRoot":"","sources":["../../../src/extensions/cite-it/csl.ts"],"names":[],"mappings":"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"}
|