securemark 0.279.0 → 0.280.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 +10 -0
- package/README.md +10 -10
- package/dist/index.js +118 -104
- package/markdown.d.ts +2 -2
- package/package.json +1 -1
- package/src/combinator/control/manipulation/indent.ts +1 -1
- package/src/combinator/data/parser/context/delimiter.ts +49 -21
- package/src/combinator/data/parser/context/memo.ts +6 -6
- package/src/combinator/data/parser/context.ts +23 -7
- package/src/debug.test.ts +2 -2
- package/src/parser/api/parse.test.ts +13 -13
- package/src/parser/block/extension/figure.ts +1 -1
- package/src/parser/block/extension/table.ts +1 -1
- package/src/parser/block.ts +2 -2
- package/src/parser/inline/annotation.ts +4 -4
- package/src/parser/inline/autolink/account.ts +1 -1
- package/src/parser/inline/autolink/url.ts +1 -1
- package/src/parser/inline/autolink.ts +2 -2
- package/src/parser/inline/bracket.test.ts +11 -10
- package/src/parser/inline/bracket.ts +10 -11
- package/src/parser/inline/deletion.ts +4 -4
- package/src/parser/inline/emphasis.ts +4 -4
- package/src/parser/inline/emstrong.ts +4 -4
- package/src/parser/inline/extension/index.test.ts +6 -0
- package/src/parser/inline/extension/index.ts +11 -11
- package/src/parser/inline/extension/placeholder.ts +4 -4
- package/src/parser/inline/html.test.ts +1 -1
- package/src/parser/inline/html.ts +6 -7
- package/src/parser/inline/insertion.ts +4 -4
- package/src/parser/inline/link.ts +6 -6
- package/src/parser/inline/mark.ts +4 -4
- package/src/parser/inline/media.ts +4 -4
- package/src/parser/inline/reference.ts +3 -3
- package/src/parser/inline/remark.test.ts +4 -3
- package/src/parser/inline/remark.ts +4 -4
- package/src/parser/inline/ruby.ts +2 -2
- package/src/parser/inline/strong.ts +4 -4
- package/src/parser/inline/template.ts +7 -4
- package/src/parser/inline.test.ts +12 -15
- package/src/parser/processor/figure.ts +0 -1
- package/src/parser/processor/note.ts +0 -3
- package/src/parser/source/str.ts +0 -19
- package/src/parser/source/text.test.ts +1 -1
- package/src/parser/source/text.ts +3 -3
- package/src/parser/source.ts +1 -1
- package/src/parser/visibility.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.280.0
|
|
4
|
+
|
|
5
|
+
- Decrease resource size to 20,000.
|
|
6
|
+
- Change operator precedence of template syntax to 6.
|
|
7
|
+
- Swap operator precedence of html syntax and remark syntax.
|
|
8
|
+
|
|
9
|
+
## 0.279.1
|
|
10
|
+
|
|
11
|
+
- Refactoring.
|
|
12
|
+
|
|
3
13
|
## 0.279.0
|
|
4
14
|
|
|
5
15
|
- Change media syntax not to be included in inline syntax.
|
package/README.md
CHANGED
|
@@ -65,16 +65,16 @@ Secure markdown renderer working on browsers for user input data.
|
|
|
65
65
|
|
|
66
66
|
## Operator precedence
|
|
67
67
|
|
|
68
|
-
|P| Operators
|
|
69
|
-
|
|
70
|
-
|9| \n, \\\n
|
|
71
|
-
|8| `
|
|
72
|
-
|6| (()), [[]], ${}$
|
|
73
|
-
|5|
|
|
74
|
-
|4|
|
|
75
|
-
|3| $, "
|
|
76
|
-
|2| (), [], {}
|
|
77
|
-
|1| *, **, ==, ++, ~~
|
|
68
|
+
|P| Operators |
|
|
69
|
+
|-|------------------------|
|
|
70
|
+
|9| \n, \\\n |
|
|
71
|
+
|8| ` |
|
|
72
|
+
|6| (()), [[]], {{}}, ${}$ |
|
|
73
|
+
|5| [% %] |
|
|
74
|
+
|4| \<tag>\</tag> |
|
|
75
|
+
|3| $, " |
|
|
76
|
+
|2| (), [], {} |
|
|
77
|
+
|1| *, **, ==, ++, ~~ |
|
|
78
78
|
|
|
79
79
|
## Dependencies
|
|
80
80
|
|