forgot to enable strikethrough

This commit is contained in:
slonkazoid 2024-04-18 05:00:48 +03:00
parent 96b0903ce1
commit 7971464e56
Signed by: slonk
SSH key fingerprint: SHA256:tbZfJX4IOvZ0LGWOWu5Ijo8jfMPi78TU7x1VoEeCIjM

View file

@ -39,6 +39,7 @@ pub fn render_with_config(markdown: &str, config: &RenderConfig, front_matter: b
options.extension.autolink = true; options.extension.autolink = true;
options.extension.tasklist = true; options.extension.tasklist = true;
options.extension.superscript = true; options.extension.superscript = true;
options.extension.strikethrough = true;
options.extension.multiline_block_quotes = true; options.extension.multiline_block_quotes = true;
options.extension.header_ids = Some(String::new()); options.extension.header_ids = Some(String::new());
if front_matter { if front_matter {