diff --git a/crates/html_to_markdown/examples/test.rs b/crates/html_to_markdown/examples/test.rs deleted file mode 100644 index 3937a7b3b3..0000000000 --- a/crates/html_to_markdown/examples/test.rs +++ /dev/null @@ -1,29 +0,0 @@ -use html_to_markdown::convert_rustdoc_to_markdown; -use indoc::indoc; - -pub fn main() { - let html = indoc! {" - - -

Hello World

-

- Here is some content. -

-

Some items

- - - - "}; - // To test this out with some real input, try this: - // - // ``` - // let html = include_str!("/path/to/zed/target/doc/gpui/index.html"); - // ``` - let markdown = convert_rustdoc_to_markdown(html.as_bytes()).unwrap(); - - println!("{markdown}"); -}