working on editor styling

This commit is contained in:
Adrian Osterwind 2024-11-13 13:51:45 +01:00
parent 05519bad5b
commit 5f35da27f2
3 changed files with 50 additions and 125 deletions

View file

@ -24,7 +24,7 @@ fn parse_markdown(document: &str) -> String {
// }
let mut html = vec![];
format_html(root, &Options::default(), &mut html).unwrap();
// println!("{:?}", String::from_utf8(html.clone()));
println!("{:?}", String::from_utf8(html.clone()));
String::from_utf8(html).unwrap()
// String::from_str("lololo").unwrap()
}