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.
Files changed (58) hide show
  1. package/CHANGELOG.md +9 -1
  2. package/dist/index.js +933 -713
  3. package/index.ts +0 -1
  4. package/karma.conf.js +1 -1
  5. package/package.json +11 -11
  6. package/src/combinator/control/constraint/block.ts +1 -2
  7. package/src/combinator/control/constraint/contract.ts +3 -3
  8. package/src/combinator/control/constraint/line.ts +1 -2
  9. package/src/combinator/control/manipulation/convert.ts +4 -4
  10. package/src/combinator/control/manipulation/indent.ts +0 -1
  11. package/src/combinator/control/manipulation/match.ts +1 -2
  12. package/src/combinator/control/manipulation/scope.ts +3 -4
  13. package/src/combinator/control/manipulation/surround.ts +1 -2
  14. package/src/combinator/control/monad/bind.ts +2 -3
  15. package/src/combinator/data/parser/context.ts +0 -1
  16. package/src/combinator/data/parser/inits.ts +1 -2
  17. package/src/combinator/data/parser/sequence.ts +1 -2
  18. package/src/combinator/data/parser/some.ts +1 -2
  19. package/src/combinator/data/parser/union.ts +4 -12
  20. package/src/parser/api/bind.ts +0 -1
  21. package/src/parser/api/parse.ts +0 -1
  22. package/src/parser/block/codeblock.ts +0 -1
  23. package/src/parser/block/extension/fig.test.ts +2 -1
  24. package/src/parser/block/extension/fig.ts +14 -2
  25. package/src/parser/block/extension/figure.ts +0 -1
  26. package/src/parser/block/extension/table.ts +0 -1
  27. package/src/parser/block/mathblock.ts +0 -1
  28. package/src/parser/block/olist.ts +0 -1
  29. package/src/parser/block.ts +0 -1
  30. package/src/parser/inline/annotation.ts +0 -1
  31. package/src/parser/inline/bracket.ts +0 -1
  32. package/src/parser/inline/extension/index.ts +0 -1
  33. package/src/parser/inline/extension/indexee.ts +0 -1
  34. package/src/parser/inline/extension/label.ts +0 -1
  35. package/src/parser/inline/html.ts +0 -1
  36. package/src/parser/inline/htmlentity.ts +0 -1
  37. package/src/parser/inline/link.ts +0 -1
  38. package/src/parser/inline/media.ts +0 -1
  39. package/src/parser/inline/reference.ts +0 -1
  40. package/src/parser/inline/ruby.ts +0 -1
  41. package/src/parser/inline/template.ts +0 -1
  42. package/src/parser/processor/figure.ts +0 -1
  43. package/src/parser/processor/footnote.ts +0 -1
  44. package/src/parser/segment.ts +0 -1
  45. package/src/parser/source/line.ts +0 -1
  46. package/src/parser/source/str.ts +0 -1
  47. package/src/parser/source/text.ts +0 -1
  48. package/src/parser/visibility.ts +0 -1
  49. package/src/renderer/render/math.ts +0 -1
  50. package/src/renderer/render/media/image.ts +0 -1
  51. package/src/renderer/render/media/twitter.ts +0 -1
  52. package/src/renderer/render/media/video.ts +0 -1
  53. package/src/renderer/render/media/youtube.ts +0 -1
  54. package/src/renderer/render.ts +0 -1
  55. package/src/util/quote.ts +0 -1
  56. package/src/util/scope.ts +0 -2
  57. package/src/util/toc.ts +0 -1
  58. 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 a caption with formula number.
1687
+ - Fix figure syntax to disallow to set the caption with formula number.
1680
1688
 
1681
1689
  ## 0.99.1
1682
1690