chore: remove debugging code

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-04-02 12:36:02 -03:00
parent 473a02de1b
commit 79fc09afad

View File

@@ -113,22 +113,6 @@ pub fn to_tumblr_npf<'a>(ast: &'a Node<'a, RefCell<Ast>>) -> Result<RefCell<NPF>
}
});
println!("{node:#?}");
println!("{:#?}", final_block.borrow());
/*
block_quote
.unwrap()
.borrow_mut()
.content
.iter_mut()
.map(|b| {
if let ContentType::Text(ref mut t) = b {
t.subtype = Some(Subtypes::Indented);
}
b
})
.for_each(|b| npf.borrow_mut().content.push(b.clone()));
*/
Ok(())
}
NodeValue::Heading(h) => {