rust-analyzer/crates/ide/src/markdown_remove.rs

20 lines
508 B
Rust
Raw Normal View History

2020-10-05 17:52:24 +00:00
//! Removes markdown from strings.
use pulldown_cmark::{Event, Parser};
2020-10-05 17:52:24 +00:00
/// Removes all markdown, keeping the text and code blocks
pub fn remove_markdown(markdown: &str) -> String {
let mut out = String::new();
let parser = Parser::new(markdown);
for event in parser {
match event {
Event::Text(text) | Event::Code(text) => out.push_str(&text),
Event::SoftBreak | Event::HardBreak | Event::Rule => out.push('\n'),
_ => {}
}
}
out
}