@quillmark/wasm 0.108.2 → 0.108.3
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 +36 -21
- package/backends/pdfform/wasm_bg.wasm +0 -0
- package/backends/typst/wasm_bg.wasm +0 -0
- package/core/wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.108.3 - 2026-08-21
|
|
4
|
+
|
|
5
|
+
- fix(typst): **a paragraph holding one bare `/` renders instead of failing the
|
|
6
|
+
compile.** Typst's heading `=`, list `-`/`+`/`N.`, and term `/` markers fire
|
|
7
|
+
on a space after them *or* on the line ending there; the emitter's
|
|
8
|
+
line-anchor guard tested only for the space, so a run that was one bare
|
|
9
|
+
marker reached Typst unescaped — `/` as a term list whose colon is missing
|
|
10
|
+
(`expected colon`), the other four as an empty heading, bullet or enum item.
|
|
11
|
+
The guard now takes Typst's own test, and covers a list item's body head as
|
|
12
|
+
well as column 0, that being a line start the parser reads as one.
|
|
13
|
+
|
|
14
|
+
- fix(typst): **bold text, a table cell or an indented paragraph opening with
|
|
15
|
+
`-`, `=`, `+`, `/` or `N.` renders as that text.** Typst reads the head of
|
|
16
|
+
every content block `[…]` as a line start of its own, so the marker in
|
|
17
|
+
`**/ x**` or in a table cell reached it as a term list whose colon is missing
|
|
18
|
+
and failed the compile, while `**- x**` drew a bullet list inside the bold.
|
|
19
|
+
Indentation is trivia and holds that line start open behind it, so a
|
|
20
|
+
paragraph beginning ` / x` failed the same way. The line-anchor guard now
|
|
21
|
+
covers every position Typst reads as a line start.
|
|
22
|
+
|
|
23
|
+
- fix(typst): **text directly after inline code, bold or an image renders when
|
|
24
|
+
it opens with `(` or `.name`.** Typst reads a `(` directly after a `#…`
|
|
25
|
+
expression as that call's arguments and a `.` before an identifier as a field
|
|
26
|
+
access, so the emitter's own `#raw(…)`, `#strong[…]` and `#image(…)` handed
|
|
27
|
+
the text behind them to Typst as code — `` `x`(y) `` became a call on
|
|
28
|
+
content, which fails the compile. Such a run now takes the same `\` prefix
|
|
29
|
+
the line-anchor guard uses. Debug builds parse every emission with Typst's
|
|
30
|
+
parser, so markup that reaches it as syntax fails a test rather than a render.
|
|
31
|
+
|
|
32
|
+
<!-- seed: commits since v0.108.2, confirm the entries above cover them, then delete this comment
|
|
33
|
+
- fix(typst): stop a `#…` expression running on into the text behind it
|
|
34
|
+
- fix(typst): guard the line anchor at every position Typst reads as one
|
|
35
|
+
- fix(typst): escape a line-anchor marker that ends its run
|
|
36
|
+
-->
|
|
37
|
+
|
|
38
|
+
|
|
3
39
|
## v0.108.2 - 2026-08-20
|
|
4
40
|
|
|
5
41
|
- fix(core): **storage blobs tagged `@0.81.0` and `@0.82.0` load again.** Both
|
|
@@ -53,27 +89,6 @@
|
|
|
53
89
|
sequence item (`- {}`) and a wholly empty `$ext: {}` already used, so an
|
|
54
90
|
emptied container survives the round-trip as the value a consumer stored.
|
|
55
91
|
|
|
56
|
-
<!-- seed: commits since v0.108.1, confirm the entries above cover them, then delete this comment
|
|
57
|
-
- docs(canon): record that @0.81.0 is the oldest tag that exists
|
|
58
|
-
- docs: leave the applied migration guide untouched
|
|
59
|
-
- docs: dense-prose pass on the DTO backfill
|
|
60
|
-
- test(core): drop the vacuous V0_81_0 body-import test
|
|
61
|
-
- fix(core): restore the V0_82_0 read shim; 0.82.0 was never yanked (#1327)
|
|
62
|
-
- chore(deps): bump the cargo group with 2 updates
|
|
63
|
-
- chore(deps): bump taiki-e/install-action in the actions group
|
|
64
|
-
- fix(core): restore the V0_81_0 storage read shim (#1327)
|
|
65
|
-
- docs: changelog entry for the simplify sweep
|
|
66
|
-
- refactor(core)!: apply simplify-review cleanups to the session seam
|
|
67
|
-
- docs(pdf): trim test helper doc to its contract
|
|
68
|
-
- refactor(core/document): apply simplify-review cleanups
|
|
69
|
-
- refactor(pdf): apply simplify-review cleanups
|
|
70
|
-
- refactor(typst): apply simplify-review cleanups
|
|
71
|
-
- refactor(core/quill): apply simplify-review cleanups
|
|
72
|
-
- refactor(content): apply simplify-review cleanups
|
|
73
|
-
- fix: an empty mapping emits as `{}` rather than losing its key
|
|
74
|
-
-->
|
|
75
|
-
|
|
76
|
-
|
|
77
92
|
## v0.108.1 - 2026-08-19
|
|
78
93
|
|
|
79
94
|
- fix: **a content cell under `variants:` is readable at its codec.**
|
|
Binary file
|
|
Binary file
|
package/core/wasm_bg.wasm
CHANGED
|
Binary file
|