diff --git a/src/misc/markdown.rs b/src/misc/markdown.rs index 288300d..0b33e73 100644 --- a/src/misc/markdown.rs +++ b/src/misc/markdown.rs @@ -41,12 +41,12 @@ pub fn get_options() -> ComrakOptions { tasklist: true, superscript: true, header_ids: Some(String::new()), - footnotes: false, // true? + footnotes: true, description_lists: true, front_matter_delimiter: Some("---".to_owned()), }, parse: ComrakParseOptions { - smart: false, // true one day? + smart: true, // could be boring default_info_string: Some("plaintext".to_owned()), relaxed_tasklist_matching: true, }, @@ -54,9 +54,9 @@ pub fn get_options() -> ComrakOptions { hardbreaks: false, // could be true? change by metadata could be good for compatibility github_pre_lang: false, full_info_string: true, - width: 0, // 0 mean disabled? - unsafe_: false, // could be true? change by metadata could be good for compatibility - escape: false, // may change in the future? + width: 0, // 0 mean disabled? + unsafe_: true, + escape: false, list_style: ListStyleType::Dash, sourcepos: false, },