🎨 支持通过界面设置代码片段 https://github.com/siyuan-note/siyuan/issues/6357

This commit is contained in:
Liang Ding 2022-10-27 11:57:01 +08:00
parent fb0a74274e
commit 5784b0711c
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -21,6 +21,7 @@ import (
"sync"
"github.com/88250/gulu"
"github.com/88250/lute/ast"
"github.com/siyuan-note/filelock"
"github.com/siyuan-note/logging"
"github.com/siyuan-note/siyuan/kernel/conf"
@ -106,7 +107,7 @@ func loadSnippets() (ret []*conf.Snippet, err error) {
needRewrite := false
for _, snippet := range ret {
if "" == snippet.ID {
snippet.ID = gulu.Rand.String(12)
snippet.ID = ast.NewNodeID()
needRewrite = true
}
}