diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-01 22:32:41 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-10-01 22:32:48 +0200 |
| commit | ce480a18b865acc21eb6c36dea8fc27b08061603 (patch) | |
| tree | f17625ac33ebde39f7c3188798b6a8fa9c9311eb /mardown/ast_modifier.go | |
| parent | 1ce93d83321c751265e4207ebf6dc73a280482c6 (diff) | |
feat(markdown): support list
Diffstat (limited to 'mardown/ast_modifier.go')
| -rw-r--r-- | mardown/ast_modifier.go | 2 |
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 { |
