rename constructor, implement zero-copy trait, remove extra regex parser

This commit is contained in:
yggverse 2025-03-16 13:42:23 +02:00
parent bab4e03940
commit 4ce1b20bf7
2 changed files with 42 additions and 14 deletions

View file

@ -72,7 +72,7 @@ fn gemtext() {
}
// List
if let Some(result) = List::from(line) {
if let Some(result) = List::parse(line) {
list.push(result);
continue;
}