From f0f82bf1f9be43b11e355b17f25d276220a600ec Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Tue, 25 Feb 2025 18:32:58 +0000 Subject: cleanup --- src/event.rs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/event.rs (limited to 'src/event.rs') diff --git a/src/event.rs b/src/event.rs deleted file mode 100644 index 244d3aa..0000000 --- a/src/event.rs +++ /dev/null @@ -1,12 +0,0 @@ -// tags, declaration, comments, text. individual bits and what they contain, e.g. tag contains attributes and namespace declarations, lang, ONLY within the tag - -pub enum Event<'s> { - StartTag(Vec>), - EmptyTag(Vec), - Attribute(()) - CData(&'s str), - Comment(&'s str), - Declaration(Vec>), - Attribute((&'str)) - EndTag, -} -- cgit