pub fn extract_links(html_content: &str, selector: &str) -> Vec<String>
从 HTML 中提取所有匹配 CSS 选择器的链接(href 属性)
html_content
selector
"a[href]"
"div.news a"
返回去重后的链接列表