aboutsummaryrefslogtreecommitdiff
path: root/mardown/ast_modifier.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-10-01 22:32:41 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-10-01 22:32:48 +0200
commitce480a18b865acc21eb6c36dea8fc27b08061603 (patch)
treef17625ac33ebde39f7c3188798b6a8fa9c9311eb /mardown/ast_modifier.go
parent1ce93d83321c751265e4207ebf6dc73a280482c6 (diff)
feat(markdown): support list
Diffstat (limited to 'mardown/ast_modifier.go')
-rw-r--r--mardown/ast_modifier.go2
1 files changed, 1 insertions, 1 deletions
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 {