pubmed-client 0.1.0

An async Rust client for PubMed and PMC APIs for retrieving biomedical research articles
Documentation
1
2
3
4
5
6
7
8
//! XML preprocessing utilities for PubMed parser
//!
//! This module re-exports common XML preprocessing utilities.
//! The actual implementation has been moved to `crate::common::xml_utils`
//! for sharing between PubMed and PMC parsers.

// Re-export from common module for backward compatibility
pub(crate) use crate::common::xml_utils::strip_inline_html_tags;