Merge pull request #2298 from SSJGabraham/Gabraham/Markdown-Single-Space-Indent

Markdown Single Space Indent
This commit is contained in:
Cohee 2024-05-22 11:04:45 +03:00 committed by GitHub
commit d011d60351
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -684,6 +684,7 @@ export function reloadMarkdownProcessor(render_formulas = false) {
parseImgDimensions: true,
simpleLineBreaks: true,
strikethrough: true,
disableForced4SpacesIndentedSublists: true,
extensions: [
showdownKatex(
{
@ -704,6 +705,7 @@ export function reloadMarkdownProcessor(render_formulas = false) {
underline: true,
simpleLineBreaks: true,
strikethrough: true,
disableForced4SpacesIndentedSublists: true,
extensions: [markdownUnderscoreExt()],
});
}