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

This commit is contained in:
Vanessa 2022-09-13 10:19:27 +08:00
commit 139c16b25b
5 changed files with 10 additions and 7 deletions

View file

@ -2,6 +2,7 @@ export const setLute = (options: ILuteOptions) => {
const lute: Lute = Lute.New();
lute.SetProtyleMarkNetImg(window.siyuan.config.editor.displayNetImgMark);
lute.SetFileAnnotationRef(true);
lute.SetTextMark(true);
lute.SetHeadingID(false);
lute.SetYamlFrontMatter(false);
lute.PutEmojis(options.emojis);

View file

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

File diff suppressed because one or more lines are too long