diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-02 10:23:52 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-02 10:23:52 +0200 |
| commit | f0899429d56849f8cdf58f53a8232e4433f6725e (patch) | |
| tree | 263178bc1b9cdd435308c8d622ff7c864c09ff22 /mardown/ast.go | |
| parent | ce480a18b865acc21eb6c36dea8fc27b08061603 (diff) | |
feat(markdown): support escape
Diffstat (limited to 'mardown/ast.go')
| -rw-r--r-- | mardown/ast.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mardown/ast.go b/mardown/ast.go index 37d670d..3794ff1 100644 --- a/mardown/ast.go +++ b/mardown/ast.go @@ -90,7 +90,7 @@ func getBlock(lxs *lexers, newLine bool) (block, error) { } else { b, err = code(lxs) } - case lexerLiteral, lexerEscape, lexerModifier: + case lexerLiteral, lexerModifier: b, err = paragraph(lxs, false) case lexerBreak: // do nothing default: |
