allow empty quote lines

This commit is contained in:
yggverse 2024-12-03 17:48:14 +02:00
parent 2fd9327c88
commit 1c95f8ad08

View file

@ -17,10 +17,6 @@ impl Inline {
// Detect value
let value = regex.get(1)?;
if value.trim().is_empty() {
return None;
}
// Result
Some(Self {
value: value.to_string(),