🎨 Update editor markdown settings default to true https://ld246.com/article/1717254690370

This commit is contained in:
Daniel 2024-06-02 21:01:59 +08:00
parent 7d8759a470
commit 0d0aa65881
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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 {