Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2024-02-25 22:28:14 +08:00
commit 77c9cac3d4
7 changed files with 19 additions and 36 deletions

View file

@ -3,6 +3,7 @@ export const setLute = (options: ILuteOptions) => {
lute.SetSpellcheck(window.siyuan.config.editor.spellcheck);
lute.SetProtyleMarkNetImg(window.siyuan.config.editor.displayNetImgMark);
lute.SetFileAnnotationRef(true);
lute.SetHTMLTag2TextMark(true);
lute.SetTextMark(true);
lute.SetHeadingID(false);
lute.SetYamlFrontMatter(false);

View file

@ -172,6 +172,8 @@ declare class Lute {
public SetTextMark(enable: boolean): void;
public SetHTMLTag2TextMark(enable: boolean): void;
public SetHeadingID(enable: boolean): void;
public SetProtyleMarkNetImg(enable: boolean): void;