securemark 0.249.0 → 0.251.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 +12 -0
- package/README.md +1 -1
- package/dist/index.js +285 -155
- package/karma.conf.js +1 -1
- package/markdown.d.ts +1 -1
- package/package.json +11 -11
- package/src/combinator/control/manipulation/indent.ts +7 -4
- package/src/combinator/control/manipulation/match.ts +2 -3
- package/src/parser/api/parse.test.ts +12 -6
- package/src/parser/block/blockquote.test.ts +2 -2
- package/src/parser/block/dlist.test.ts +2 -1
- package/src/parser/block/dlist.ts +4 -4
- package/src/parser/block/extension/figure.ts +5 -5
- package/src/parser/block/heading.test.ts +1 -0
- package/src/parser/block/heading.ts +4 -4
- package/src/parser/block/indentblock.test.ts +17 -10
- package/src/parser/block/indentblock.ts +3 -3
- package/src/parser/block/olist.ts +7 -6
- package/src/parser/block/paragraph.test.ts +10 -10
- package/src/parser/block/paragraph.ts +2 -2
- package/src/parser/block/reply.ts +2 -2
- package/src/parser/block/ulist.ts +4 -3
- package/src/parser/inline/annotation.ts +2 -2
- package/src/parser/inline/code.ts +1 -1
- package/src/parser/inline/comment.test.ts +44 -44
- package/src/parser/inline/comment.ts +2 -2
- package/src/parser/inline/extension/index.test.ts +4 -4
- package/src/parser/inline/extension/placeholder.test.ts +4 -4
- package/src/parser/inline/html.ts +8 -9
- package/src/parser/inline/link.ts +2 -2
- package/src/parser/inline/reference.ts +3 -3
- package/src/parser/inline.test.ts +2 -2
- package/src/parser/util.ts +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.251.0
|
|
4
|
+
|
|
5
|
+
- Change indentblock parser to require 4 spaces or 1 tab to support text indent.
|
|
6
|
+
|
|
7
|
+
## 0.250.0
|
|
8
|
+
|
|
9
|
+
- Change comment syntax.
|
|
10
|
+
|
|
11
|
+
## 0.249.1
|
|
12
|
+
|
|
13
|
+
- Update dependencies.
|
|
14
|
+
|
|
3
15
|
## 0.249.0
|
|
4
16
|
|
|
5
17
|
- Change some parsers to trim leading blanks except linebreaks.
|