From 4e99c3e4cb2ec1837dc9dcb829ed514794bb93fa Mon Sep 17 00:00:00 2001 From: Gabraham Date: Fri, 3 May 2024 13:15:38 -0400 Subject: [PATCH] Disabled forced 4 spaces indented sublists for markdown formatting - For #2176 --- public/script.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/script.js b/public/script.js index 14079e155..a12786649 100644 --- a/public/script.js +++ b/public/script.js @@ -670,6 +670,7 @@ export function reloadMarkdownProcessor(render_formulas = false) { tables: true, parseImgDimensions: true, simpleLineBreaks: true, + disableForced4SpacesIndentedSublists: true, extensions: [ showdownKatex( { @@ -689,6 +690,7 @@ export function reloadMarkdownProcessor(render_formulas = false) { tables: true, underline: true, simpleLineBreaks: true, + disableForced4SpacesIndentedSublists: true, extensions: [markdownUnderscoreExt()], }); }