securemark 0.243.1 → 0.244.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.md +13 -0
- package/design.md +1 -0
- package/dist/securemark.js +123 -110
- package/package-lock.json +147 -141
- package/package.json +6 -6
- package/src/combinator/control/manipulation/fence.ts +25 -15
- package/src/combinator/data/parser.ts +2 -0
- package/src/debug.test.ts +6 -4
- package/src/parser/block/codeblock.test.ts +1 -1
- package/src/parser/block/codeblock.ts +9 -6
- package/src/parser/block/extension/aside.ts +8 -5
- package/src/parser/block/extension/example.ts +9 -5
- package/src/parser/block/extension/fig.test.ts +2 -0
- package/src/parser/block/extension/figure.test.ts +3 -1
- package/src/parser/block/extension/figure.ts +8 -24
- package/src/parser/block/extension/message.ts +9 -5
- package/src/parser/block/extension/placeholder.ts +6 -5
- package/src/parser/block/extension/table.ts +8 -5
- package/src/parser/block/mathblock.test.ts +4 -4
- package/src/parser/block/mathblock.ts +11 -8
- package/src/parser/header.test.ts +1 -0
- package/src/parser/inline/bracket.test.ts +18 -2
- package/src/parser/inline/bracket.ts +1 -1
- package/src/parser/inline/html.test.ts +7 -0
- package/src/parser/inline/html.ts +17 -19
- package/src/parser/inline/link.ts +2 -3
- package/src/parser/inline/media.ts +1 -2
- package/src/renderer/render/media/image.ts +2 -2
- package/src/renderer/render/media/video.ts +1 -1
- package/src/renderer/render/media/youtube.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.244.1
|
|
4
|
+
|
|
5
|
+
- Refactoring.
|
|
6
|
+
|
|
7
|
+
## 0.244.0
|
|
8
|
+
|
|
9
|
+
- Change mathblock syntax to increase the maximum number of contained lines to 300.
|
|
10
|
+
- Fix fence parser.
|
|
11
|
+
|
|
12
|
+
## 0.243.2
|
|
13
|
+
|
|
14
|
+
- Refactoring.
|
|
15
|
+
|
|
3
16
|
## 0.243.1
|
|
4
17
|
|
|
5
18
|
- Refactoring.
|
package/design.md
CHANGED