From 0da0256efa3d426001f8bc74c89b16ea08ac4f3a Mon Sep 17 00:00:00 2001 From: philipp Date: Sat, 17 Feb 2024 20:50:11 +0100 Subject: [PATCH] push --- src/paragraph/parser/liste.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paragraph/parser/liste.rs b/src/paragraph/parser/liste.rs index 23baa97..bf8e964 100644 --- a/src/paragraph/parser/liste.rs +++ b/src/paragraph/parser/liste.rs @@ -49,7 +49,7 @@ impl Liste { if let Some(last) = last_ebene { if liste.ebene > last { let last_list = content.pop().unwrap(); - content.push(Content::List(vec![last_list, liste.get_content()])); + content.push(Content::Multi(vec![last_list, liste.get_content()])); already_added = true; } }