diff options
author | Martin Fischer <martin@push-f.com> | 2021-04-08 10:25:09 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-04-08 15:40:48 +0200 |
commit | 8bb20dcdeec57b2109b05351663ec1dba9c65f84 (patch) | |
tree | 3ddf7196d2fe66d92e4819c362e248cb96be3c0b /src/lib.rs | |
parent | fc9d3132f390b038544e45048b4fe345a3d47793 (diff) |
drop markup5ever dependency
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -12,7 +12,6 @@ #![cfg_attr(test, deny(warnings))] #![allow(unused_parens)] -pub use markup5ever; pub use tendril; #[macro_use] @@ -20,17 +19,6 @@ mod macros; /// Create a [`SmallCharSet`], with each space-separated number stored in the set. /// -/// # Examples -/// -/// ``` -/// # #[macro_use] extern crate markup5ever; -/// # fn main() { -/// let set = small_char_set!(12 54 42); -/// assert_eq!(set.bits, -/// 0b00000000_01000000_00000100_00000000_00000000_00000000_00010000_00000000); -/// # } -/// ``` -/// /// [`SmallCharSet`]: struct.SmallCharSet.html #[macro_export] macro_rules! small_char_set ( ($($e:expr)+) => ( |