Function extract_text_between_ref
pub fn extract_text_between_ref<'a>(
content: &'a str,
start: &str,
end: &str,
) -> Option<&'a str>Expand description
Extract text between two XML tags as a borrowed string slice
Same as extract_text_between but returns a &str slice to avoid allocation.