flinker-markdown 1.1.19 → 1.1.20

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 (2) hide show
  1. package/dist/esm/md.js +1 -1
  2. package/package.json +1 -1
package/dist/esm/md.js CHANGED
@@ -155,7 +155,7 @@ export class MDGrammar {
155
155
  this.div.endMatcher = [/^``` *$/, '</div></div>'];
156
156
  this.div.childrenInlineRules = this.globalRule.childrenInlineRules;
157
157
  this.div.childrenLineRules = [this.quote, this.alignCenter, this.alignRight, this.tilde, this.horRule, this.br, this.p];
158
- this.div.childrenMultilineRules = [this.div, this.ol, this.ul, this.table];
158
+ this.div.childrenMultilineRules = [this.ol, this.ul, this.table, this.div];
159
159
  this.globalRule.childrenMultilineRules = [this.ol, this.ul, this.table, this.div];
160
160
  }
161
161
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flinker-markdown",
3
3
  "description": "Free TypeScript library for parsing markdown text (customisable, not standardized).",
4
- "version": "1.1.19",
4
+ "version": "1.1.20",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/Dittner/FlinkerMD.git"