From 7971464e565c984ca1e3956afe6bf32a08c301e8 Mon Sep 17 00:00:00 2001 From: slonkazoid Date: Thu, 18 Apr 2024 05:00:48 +0300 Subject: [PATCH] forgot to enable strikethrough --- src/markdown_render.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/markdown_render.rs b/src/markdown_render.rs index 4158f33..cc80677 100644 --- a/src/markdown_render.rs +++ b/src/markdown_render.rs @@ -39,6 +39,7 @@ pub fn render_with_config(markdown: &str, config: &RenderConfig, front_matter: b options.extension.autolink = true; options.extension.tasklist = true; options.extension.superscript = true; + options.extension.strikethrough = true; options.extension.multiline_block_quotes = true; options.extension.header_ids = Some(String::new()); if front_matter {