🎨 Supports disabling Markdown ~~ syntax input https://github.com/siyuan-note/siyuan/issues/12641

This commit is contained in:
Daniel 2024-10-20 17:40:26 +08:00
parent 920794b803
commit 1ab7e16888
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
18 changed files with 84 additions and 32 deletions

View file

@ -312,6 +312,10 @@ declare namespace Config {
* Whether to enable the inline math
*/
inlineMath: boolean;
/**
* Whether to enable the inline strikethrough
*/
inlineStrikethrough: boolean;
}
/**

View file

@ -206,6 +206,8 @@ declare class Lute {
public SetInlineMath(enable: boolean): void;
public SetGFMStrikethrough(enable: boolean): void;
public SetGFMStrikethrough1(enable: boolean): void;
public SetMark(enable: boolean): void;