feat: support escapes in attributes

Related issue: #1
This commit is contained in:
kmaasrud 2023-03-06 12:18:58 +01:00
parent a7f5b337a8
commit e3f39d4b88
No known key found for this signature in database
4 changed files with 152 additions and 34 deletions

View file

@ -63,7 +63,7 @@ mod tree;
use span::DiscontinuousString;
use span::Span;
pub use attr::Attributes;
pub use attr::{AttributeValue, AttributeValueParts, Attributes};
type CowStr<'s> = std::borrow::Cow<'s, str>;