Skip to content

Commit

Permalink
chore: unexport accidentally-exported macro (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-heller authored Jan 18, 2025
1 parent cb76674 commit 1e5c426
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/html.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ use crate::preprocess;

pub type Parser<'book> = html5ever::Parser<preprocess::tree::HtmlTreeSink<'book>>;

#[macro_export]
macro_rules! html_name {
macro_rules! name {
(html $name:tt) => {{
use html5ever::namespace_url;
html5ever::QualName {
Expand All @@ -21,4 +20,4 @@ macro_rules! html_name {
}
}};
}
pub use crate::html_name as name;
pub(crate) use name;

0 comments on commit 1e5c426

Please sign in to comment.