pub struct MarkdownRendererConfig {
pub enable_tables: bool,
pub enable_footnotes: bool,
pub enable_strikethrough: bool,
pub enable_tasklists: bool,
pub enable_smart_punctuation: bool,
}Expand description
Markdown 渲染器配置
Fields§
§enable_tables: bool是否启用表格支持
enable_footnotes: bool是否启用脚注支持
enable_strikethrough: bool是否启用删除线支持
enable_tasklists: bool是否启用任务列表支持
enable_smart_punctuation: bool是否启用智能标点
Trait Implementations§
Source§impl Clone for MarkdownRendererConfig
impl Clone for MarkdownRendererConfig
Source§fn clone(&self) -> MarkdownRendererConfig
fn clone(&self) -> MarkdownRendererConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MarkdownRendererConfig
impl Debug for MarkdownRendererConfig
Auto Trait Implementations§
impl Freeze for MarkdownRendererConfig
impl RefUnwindSafe for MarkdownRendererConfig
impl Send for MarkdownRendererConfig
impl Sync for MarkdownRendererConfig
impl Unpin for MarkdownRendererConfig
impl UnsafeUnpin for MarkdownRendererConfig
impl UnwindSafe for MarkdownRendererConfig
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