//! Utility functions for table processing.
//!
//! Provides helper functions for tag name normalization and comparison.
pub use cratetag_name_eq;
pub use cratenormalized_tag_name;
/// Check if a node has a specific tag name.
///
/// Handles both direct tag matching and DOM context-based tag resolution.
///
/// # Arguments
/// * `node_handle` - Handle to the node
/// * `parser` - HTML parser instance
/// * `dom_ctx` - DOM context for tag name resolution
/// * `name` - Expected tag name
///
/// # Returns
/// True if node has the specified tag name
pub