🎨 Supports disabling Markdown syntax input for some inline elements https://github.com/siyuan-note/siyuan/issues/11141 https://ld246.com/article/1714207731244
This commit is contained in:
parent
321bba6aa0
commit
b934568eba
1 changed files with 4 additions and 0 deletions
|
@ -1193,6 +1193,10 @@ func convertWikiLinksAndTags0(tree *parse.Tree) {
|
|||
}
|
||||
|
||||
func convertTags(text string) (ret string) {
|
||||
if !util.MarkdownSettings.InlineTag {
|
||||
return text
|
||||
}
|
||||
|
||||
pos, i := -1, 0
|
||||
tokens := []byte(text)
|
||||
for ; i < len(tokens); i++ {
|
||||
|
|
Loading…
Add table
Reference in a new issue