From e6eb02ad035550000afba36db90ca8563a7b63c2 Mon Sep 17 00:00:00 2001 From: Noah Hellman Date: Mon, 16 Jan 2023 18:07:47 +0100 Subject: [PATCH] fixup! inline: word attributes --- src/inline.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/inline.rs b/src/inline.rs index 721bdd3..40ee33b 100644 --- a/src/inline.rs +++ b/src/inline.rs @@ -929,6 +929,13 @@ mod test { #[test] fn attr() { + test_parse!( + "word{a=b}", + (Attributes, "{a=b}"), + (Enter(Span), ""), + (Str, "word"), + (Exit(Span), ""), + ); test_parse!( "some word{.a}{.b} with attrs", (Str, "some "),