Struct pulldown_cmark_to_cmark::Options
source · pub struct Options<'a> {Show 17 fields
pub newlines_after_headline: usize,
pub newlines_after_paragraph: usize,
pub newlines_after_codeblock: usize,
pub newlines_after_htmlblock: 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 newlines_after_metadata: usize,
pub code_block_token_count: usize,
pub code_block_token: char,
pub list_token: char,
pub ordered_list_token: char,
pub increment_ordered_list_bullets: bool,
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: usize
§newlines_after_paragraph: usize
§newlines_after_codeblock: usize
§newlines_after_htmlblock: usize
§newlines_after_table: usize
§newlines_after_rule: usize
§newlines_after_list: usize
§newlines_after_blockquote: usize
§newlines_after_rest: usize
§newlines_after_metadata: usize
The amount of newlines placed after TOML or YAML metadata blocks at the beginning of a document.
code_block_token_count: usize
Token count for fenced code block. An appropriate value of this field can be decided by
calculate_code_block_token_count()
.
Note that the default value is 4
which allows for one level of nested code-blocks,
which is typically a safe value for common kinds of markdown documents.
code_block_token: char
§list_token: char
§ordered_list_token: char
§increment_ordered_list_bullets: bool
§emphasis_token: char
§strong_token: &'a str
Implementations§
Trait Implementations§
source§impl<'a> Ord for Options<'a>
impl<'a> Ord for Options<'a>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a> PartialOrd for Options<'a>
impl<'a> PartialOrd for Options<'a>
impl<'a> Eq for Options<'a>
impl<'a> StructuralPartialEq for Options<'a>
Auto Trait Implementations§
impl<'a> Freeze for Options<'a>
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§
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)