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.
Files changed (36) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +7 -10
  3. package/dist/index.js +329 -150
  4. package/package.json +1 -1
  5. package/src/combinator/control/manipulation/indent.test.ts +6 -1
  6. package/src/combinator/control/manipulation/indent.ts +1 -1
  7. package/src/combinator/control/manipulation/scope.ts +3 -4
  8. package/src/combinator/control/manipulation/surround.ts +2 -1
  9. package/src/combinator/data/parser/context/delimiter.ts +7 -12
  10. package/src/combinator/data/parser/some.ts +4 -8
  11. package/src/parser/api/parse.test.ts +2 -2
  12. package/src/parser/block/olist.test.ts +8 -6
  13. package/src/parser/block/olist.ts +2 -2
  14. package/src/parser/block/sidefence.ts +2 -2
  15. package/src/parser/block/table.ts +2 -2
  16. package/src/parser/block.ts +38 -36
  17. package/src/parser/inline/annotation.test.ts +1 -1
  18. package/src/parser/inline/autolink/url.test.ts +5 -5
  19. package/src/parser/inline/bracket.test.ts +6 -4
  20. package/src/parser/inline/bracket.ts +114 -88
  21. package/src/parser/inline/html.ts +24 -13
  22. package/src/parser/inline/italic.test.ts +9 -9
  23. package/src/parser/inline/link.ts +1 -1
  24. package/src/parser/inline/mark.test.ts +5 -5
  25. package/src/parser/inline/math.ts +2 -2
  26. package/src/parser/inline/media.ts +3 -2
  27. package/src/parser/inline/reference.test.ts +1 -1
  28. package/src/parser/inline/remark.ts +2 -2
  29. package/src/parser/inline/template.ts +1 -1
  30. package/src/parser/inline.test.ts +24 -23
  31. package/src/parser/inline.ts +46 -47
  32. package/src/parser/segment.ts +12 -12
  33. package/src/parser/source/escapable.test.ts +1 -1
  34. package/src/parser/source/escapable.ts +7 -4
  35. package/src/parser/source/text.ts +162 -25
  36. package/src/parser/source/unescapable.ts +5 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.293.3
4
+
5
+ - Refactoring.
6
+
7
+ ## 0.293.2
8
+
9
+ - Refactoring.
10
+
3
11
  ## 0.293.1
4
12
 
5
13
  - Refactoring.
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
- |9| \n |
71
- |6| ` |
72
- |5| \${}$ |
73
- |4| [% %] |
74
- |3| \<tag>\</tag> |
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