securemark 0.262.2 → 0.263.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 +9 -1
- package/dist/index.js +933 -713
- package/index.ts +0 -1
- package/karma.conf.js +1 -1
- package/package.json +11 -11
- package/src/combinator/control/constraint/block.ts +1 -2
- package/src/combinator/control/constraint/contract.ts +3 -3
- package/src/combinator/control/constraint/line.ts +1 -2
- package/src/combinator/control/manipulation/convert.ts +4 -4
- package/src/combinator/control/manipulation/indent.ts +0 -1
- package/src/combinator/control/manipulation/match.ts +1 -2
- package/src/combinator/control/manipulation/scope.ts +3 -4
- package/src/combinator/control/manipulation/surround.ts +1 -2
- package/src/combinator/control/monad/bind.ts +2 -3
- package/src/combinator/data/parser/context.ts +0 -1
- package/src/combinator/data/parser/inits.ts +1 -2
- package/src/combinator/data/parser/sequence.ts +1 -2
- package/src/combinator/data/parser/some.ts +1 -2
- package/src/combinator/data/parser/union.ts +4 -12
- package/src/parser/api/bind.ts +0 -1
- package/src/parser/api/parse.ts +0 -1
- package/src/parser/block/codeblock.ts +0 -1
- package/src/parser/block/extension/fig.test.ts +2 -1
- package/src/parser/block/extension/fig.ts +14 -2
- package/src/parser/block/extension/figure.ts +0 -1
- package/src/parser/block/extension/table.ts +0 -1
- package/src/parser/block/mathblock.ts +0 -1
- package/src/parser/block/olist.ts +0 -1
- package/src/parser/block.ts +0 -1
- package/src/parser/inline/annotation.ts +0 -1
- package/src/parser/inline/bracket.ts +0 -1
- package/src/parser/inline/extension/index.ts +0 -1
- package/src/parser/inline/extension/indexee.ts +0 -1
- package/src/parser/inline/extension/label.ts +0 -1
- package/src/parser/inline/html.ts +0 -1
- package/src/parser/inline/htmlentity.ts +0 -1
- package/src/parser/inline/link.ts +0 -1
- package/src/parser/inline/media.ts +0 -1
- package/src/parser/inline/reference.ts +0 -1
- package/src/parser/inline/ruby.ts +0 -1
- package/src/parser/inline/template.ts +0 -1
- package/src/parser/processor/figure.ts +0 -1
- package/src/parser/processor/footnote.ts +0 -1
- package/src/parser/segment.ts +0 -1
- package/src/parser/source/line.ts +0 -1
- package/src/parser/source/str.ts +0 -1
- package/src/parser/source/text.ts +0 -1
- package/src/parser/visibility.ts +0 -1
- package/src/renderer/render/math.ts +0 -1
- package/src/renderer/render/media/image.ts +0 -1
- package/src/renderer/render/media/twitter.ts +0 -1
- package/src/renderer/render/media/video.ts +0 -1
- package/src/renderer/render/media/youtube.ts +0 -1
- package/src/renderer/render.ts +0 -1
- package/src/util/quote.ts +0 -1
- package/src/util/scope.ts +0 -2
- package/src/util/toc.ts +0 -1
- package/webpack.config.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.263.1
|
|
4
|
+
|
|
5
|
+
- Refactoring.
|
|
6
|
+
|
|
7
|
+
## 0.263.0
|
|
8
|
+
|
|
9
|
+
- Extend fig syntax to set the caption only for inline syntax such as media syntax.
|
|
10
|
+
|
|
3
11
|
## 0.262.2
|
|
4
12
|
|
|
5
13
|
- Refactoring.
|
|
@@ -1676,7 +1684,7 @@
|
|
|
1676
1684
|
|
|
1677
1685
|
## 0.99.2
|
|
1678
1686
|
|
|
1679
|
-
- Fix figure syntax to disallow to set
|
|
1687
|
+
- Fix figure syntax to disallow to set the caption with formula number.
|
|
1680
1688
|
|
|
1681
1689
|
## 0.99.1
|
|
1682
1690
|
|