From ce480a18b865acc21eb6c36dea8fc27b08061603 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 1 Oct 2025 22:32:41 +0200 Subject: feat(markdown): support list --- mardown/ast_modifier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mardown/ast_modifier.go') diff --git a/mardown/ast_modifier.go b/mardown/ast_modifier.go index 944cb4a..0107605 100644 --- a/mardown/ast_modifier.go +++ b/mardown/ast_modifier.go @@ -63,7 +63,7 @@ func modifier(lxs *lexers) (*astModifier, error) { var s string for lxs.Next() { switch lxs.Current().Type { - case lexerLiteral, lexerHeader: + case lexerLiteral, lexerHeader, lexerList: s += lxs.Current().Value case lexerModifier: if lxs.Current().Value == mod.symbols { -- cgit v1.2.3