From 0d0aa65881d00b8765bc0756f77da504838f4ce3 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sun, 2 Jun 2024 21:01:59 +0800 Subject: [PATCH] :art: Update editor markdown settings default to true https://ld246.com/article/1717254690370 --- kernel/util/lute.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/util/lute.go b/kernel/util/lute.go index 258bddfa3..bfc9ea87c 100644 --- a/kernel/util/lute.go +++ b/kernel/util/lute.go @@ -26,10 +26,10 @@ import ( // MarkdownSettings 运行时 Markdown 配置。 var MarkdownSettings = &Markdown{ - InlineSup: false, - InlineSub: false, - InlineTag: false, - InlineMath: false, + InlineSup: true, + InlineSub: true, + InlineTag: true, + InlineMath: true, } type Markdown struct {