@lezer/markdown
Advanced tools
Comparing version 0.15.3 to 0.15.4
@@ -0,1 +1,7 @@ | ||
## 0.15.4 (2022-02-02) | ||
### Bug fixes | ||
Fix compatibility fallback for engines with RegExp `\p` support. | ||
## 0.15.3 (2021-12-13) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "@lezer/markdown", | ||
"version": "0.15.3", | ||
"version": "0.15.4", | ||
"description": "Incremental Markdown parser that consumes and emits Lezer trees", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs", |
<!-- /README.md is generated from /src/README.md --> | ||
# @lezer/markdown | ||
# lezer-markdown | ||
@@ -21,2 +21,7 @@ This is an incremental Markdown ([CommonMark](https://commonmark.org/) | ||
The | ||
[@codemirror/lang-markdown](https://github.com/codemirror/lang-markdown) | ||
package integrates this parser with CodeMirror to provide Markdown | ||
editor support. | ||
The code is licensed under an MIT license. | ||
@@ -23,0 +28,0 @@ |
@@ -33,3 +33,3 @@ import {TreeCursor, SyntaxNode, Parser, Input, parseMixed} from "@lezer/common" | ||
let info = "" | ||
if (id = Type.FencedCode) { | ||
if (id == Type.FencedCode) { | ||
let infoNode = node.node.getChild(Type.CodeInfo) | ||
@@ -36,0 +36,0 @@ if (infoNode) info = input.read(infoNode.from, infoNode.to) |
@@ -21,2 +21,7 @@ <!-- /README.md is generated from /src/README.md --> | ||
The | ||
[@codemirror/lang-markdown](https://github.com/codemirror/lang-markdown) | ||
package integrates this parser with CodeMirror to provide Markdown | ||
editor support. | ||
The code is licensed under an MIT license. | ||
@@ -23,0 +28,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
369609
671