pub fn extract_content(raw_html: &str, content_selector: &str) -> Result<String>Expand description
智能提取:优先 Readability,失败则回退到 CSS 选择器
let html = r#"<html><body><article><p>正文</p></article></body></html>"#;
let content = crawlkit_parser::html::extract_content(html, "article").unwrap();