securemark 0.293.1 → 0.293.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 +8 -0
- package/README.md +7 -10
- package/dist/index.js +329 -150
- package/package.json +1 -1
- package/src/combinator/control/manipulation/indent.test.ts +6 -1
- package/src/combinator/control/manipulation/indent.ts +1 -1
- package/src/combinator/control/manipulation/scope.ts +3 -4
- package/src/combinator/control/manipulation/surround.ts +2 -1
- package/src/combinator/data/parser/context/delimiter.ts +7 -12
- package/src/combinator/data/parser/some.ts +4 -8
- package/src/parser/api/parse.test.ts +2 -2
- package/src/parser/block/olist.test.ts +8 -6
- package/src/parser/block/olist.ts +2 -2
- package/src/parser/block/sidefence.ts +2 -2
- package/src/parser/block/table.ts +2 -2
- package/src/parser/block.ts +38 -36
- package/src/parser/inline/annotation.test.ts +1 -1
- package/src/parser/inline/autolink/url.test.ts +5 -5
- package/src/parser/inline/bracket.test.ts +6 -4
- package/src/parser/inline/bracket.ts +114 -88
- package/src/parser/inline/html.ts +24 -13
- package/src/parser/inline/italic.test.ts +9 -9
- package/src/parser/inline/link.ts +1 -1
- package/src/parser/inline/mark.test.ts +5 -5
- package/src/parser/inline/math.ts +2 -2
- package/src/parser/inline/media.ts +3 -2
- package/src/parser/inline/reference.test.ts +1 -1
- package/src/parser/inline/remark.ts +2 -2
- package/src/parser/inline/template.ts +1 -1
- package/src/parser/inline.test.ts +24 -23
- package/src/parser/inline.ts +46 -47
- package/src/parser/segment.ts +12 -12
- package/src/parser/source/escapable.test.ts +1 -1
- package/src/parser/source/escapable.ts +7 -4
- package/src/parser/source/text.ts +162 -25
- package/src/parser/source/unescapable.ts +5 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -65,16 +65,13 @@ Secure markdown renderer working on browsers for user input data.
|
|
|
65
65
|
|
|
66
66
|
## Operator precedence
|
|
67
67
|
|
|
68
|
-
|P| Operators
|
|
69
|
-
|
|
70
|
-
|
|
|
71
|
-
|
|
|
72
|
-
|
|
|
73
|
-
|
|
|
74
|
-
|
|
|
75
|
-
|2| $, " |
|
|
76
|
-
|1| (), [], {}, (()), [[]], {{}} |
|
|
77
|
-
|0| *, **, ///, ==, ++, ~~ |
|
|
68
|
+
|P| Operators |
|
|
69
|
+
|-|----------------------------------------|
|
|
70
|
+
|4| `, \${}$ |
|
|
71
|
+
|3| [% %] |
|
|
72
|
+
|2| $, " |
|
|
73
|
+
|1| (), [], {}, (()), [[]], {{}} |
|
|
74
|
+
|0| *, **, ///, ==, ++, ~~ , \<tag>\</tag> |
|
|
78
75
|
|
|
79
76
|
## Dependencies
|
|
80
77
|
|