mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-21 11:30:42 +08:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
2e525a3e44
@ -1,10 +1,10 @@
|
||||
{
|
||||
"editorMarkdownInlineSup": "Markdown 行级上标语法",
|
||||
"editorMarkdownInlineSupTip": "启用后将支持 <code class='fn__code'>^foo^</code> 上标语法输入",
|
||||
"editorMarkdownInlineSupTip": "启用后将支持 <code class='fn__code'>^foo^</code> 行级上标语法输入",
|
||||
"editorMarkdownInlineSub": "Markdown 行级下标语法",
|
||||
"editorMarkdownInlineSubTip": "启用后将支持 <code class='fn__code'>~foo~</code> 下标语法输入",
|
||||
"editorMarkdownInlineSubTip": "启用后将支持 <code class='fn__code'>~foo~</code> 行级下标语法输入",
|
||||
"editorMarkdownInlineTag": "Markdown 行级标签语法",
|
||||
"editorMarkdownInlineTagTip": "启用后将支持 <code class='fn__code'>#foo#</code> 标签语法输入",
|
||||
"editorMarkdownInlineTagTip": "启用后将支持 <code class='fn__code'>#foo#</code> 行级标签语法输入",
|
||||
"editorMarkdownInlineMath": "Markdown 行级公式语法",
|
||||
"editorMarkdownInlineMathTip": "启用后将支持 <code class='fn__code'>$foo$</code> 行级公式语法输入",
|
||||
"currentNotebook": "当前笔记本",
|
||||
|
@ -145,7 +145,7 @@ func (value *Value) Compare(other *Value, attrView *AttributeView) int {
|
||||
return s
|
||||
}
|
||||
}
|
||||
return 1
|
||||
return 0
|
||||
} else {
|
||||
for i := 0; i < oLen; i++ {
|
||||
v := value.MSelect[i].Content
|
||||
@ -160,9 +160,8 @@ func (value *Value) Compare(other *Value, attrView *AttributeView) int {
|
||||
return s
|
||||
}
|
||||
}
|
||||
return -1
|
||||
return 0
|
||||
}
|
||||
|
||||
}
|
||||
case KeyTypeURL:
|
||||
if nil != value.URL && nil != other.URL {
|
||||
|
Loading…
Reference in New Issue
Block a user