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

This commit is contained in:
yggverse 2025-03-16 14:43:08 +02:00
parent 1b43f6aeaf
commit bf4ac4bd27
2 changed files with 44 additions and 14 deletions

View file

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