Struct pulldown_cmark_to_cmark::Options
source · [−]pub struct Options<'a> {Show 13 fields
pub newlines_after_headline: usize,
pub newlines_after_paragraph: usize,
pub newlines_after_codeblock: usize,
pub newlines_after_table: usize,
pub newlines_after_rule: usize,
pub newlines_after_list: usize,
pub newlines_after_blockquote: usize,
pub newlines_after_rest: usize,
pub code_block_token_count: usize,
pub code_block_token: char,
pub list_token: char,
pub emphasis_token: char,
pub strong_token: &'a str,
}Expand description
Configuration for the cmark_with_options() and cmark_resume_with_options() functions.
The defaults should provide decent spacing and most importantly, will
provide a faithful rendering of your markdown document particularly when
rendering it to HTML.
It’s best used with its Options::default() implementation.
Fields
newlines_after_headline: usizenewlines_after_paragraph: usizenewlines_after_codeblock: usizenewlines_after_table: usizenewlines_after_rule: usizenewlines_after_list: usizenewlines_after_blockquote: usizenewlines_after_rest: usizecode_block_token_count: usizecode_block_token: charlist_token: charemphasis_token: charstrong_token: &'a strImplementations
Trait Implementations
sourceimpl<'a> Ord for Options<'a>
impl<'a> Ord for Options<'a>
sourceimpl<'a> PartialOrd<Options<'a>> for Options<'a>
impl<'a> PartialOrd<Options<'a>> for Options<'a>
sourcefn partial_cmp(&self, other: &Options<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &Options<'a>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<'a> Eq for Options<'a>
impl<'a> StructuralEq for Options<'a>
impl<'a> StructuralPartialEq for Options<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Options<'a>
impl<'a> Send for Options<'a>
impl<'a> Sync for Options<'a>
impl<'a> Unpin for Options<'a>
impl<'a> UnwindSafe for Options<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more