Convert HTML to markdown using htmd
(html: &str)
| 155 | |
| 156 | /// Convert HTML to markdown using htmd |
| 157 | fn html_to_markdown(html: &str) -> String { |
| 158 | htmd::convert(html).unwrap_or_else(|_| html_to_text(html)) |
| 159 | } |
| 160 | |
| 161 | #[cfg(test)] |
| 162 | mod tests { |