diff --git a/src/convert/npf.rs b/src/convert/npf.rs index 1b2a2e1..fd112b6 100644 --- a/src/convert/npf.rs +++ b/src/convert/npf.rs @@ -77,7 +77,10 @@ impl<'a> TryFrom<&'a Node<'a, RefCell>> for objects::Post { Ok(p) } NodeValue::BlockQuote => { - let p = Self::try_from(node.children())?.join_content("\n\n"); + let mut p = Self::try_from(node.children())?.join_content("\n\n"); + if let BlockValue::Text(ref mut t) = &mut p.content[0] { + t.subtype = Some(BlockTextSubtype::Indented); + } Ok(p) } NodeValue::Text(t) => {