pub struct ToMdConfig {
pub ignore_rendering: Vec<NodeType>,
}Expand description
Controls how nodes are rendered to Markdown.
Pass this to crate::to_md::to_md_with_config or
crate::to_md::safe_from_html_to_md_with_config.
Fields§
§ignore_rendering: Vec<NodeType>Node types whose complete subtrees should be omitted from Markdown output.
Trait Implementations§
Source§impl Debug for ToMdConfig
impl Debug for ToMdConfig
Source§impl Default for ToMdConfig
impl Default for ToMdConfig
Source§fn default() -> ToMdConfig
fn default() -> ToMdConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ToMdConfig
impl RefUnwindSafe for ToMdConfig
impl Send for ToMdConfig
impl Sync for ToMdConfig
impl Unpin for ToMdConfig
impl UnsafeUnpin for ToMdConfig
impl UnwindSafe for ToMdConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more