mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 14:40:12 +01:00
🎨 Improve av https://github.com/siyuan-note/siyuan/issues/15590
This commit is contained in:
parent
980cf25745
commit
76266cac87
1 changed files with 8 additions and 7 deletions
|
|
@ -18,6 +18,7 @@ package filesys
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
|
||||
"github.com/88250/lute"
|
||||
"github.com/88250/lute/ast"
|
||||
"github.com/88250/lute/parse"
|
||||
|
|
@ -126,14 +127,14 @@ func statTree(tree *parse.Tree) (ret *util.BlockStatResult) {
|
|||
for _, v := range kValues.Values {
|
||||
switch kValues.Key.Type {
|
||||
case av.KeyTypeURL:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
|
||||
dbLinkCnt++
|
||||
content.WriteString(v.URL.Content)
|
||||
case av.KeyTypeMAsset:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
@ -143,7 +144,7 @@ func statTree(tree *parse.Tree) (ret *util.BlockStatResult) {
|
|||
}
|
||||
}
|
||||
case av.KeyTypeBlock:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
@ -152,23 +153,23 @@ func statTree(tree *parse.Tree) (ret *util.BlockStatResult) {
|
|||
}
|
||||
content.WriteString(v.Block.Content)
|
||||
case av.KeyTypeText:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
content.WriteString(v.Text.Content)
|
||||
case av.KeyTypeNumber:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
v.Number.FormatNumber()
|
||||
content.WriteString(v.Number.FormattedContent)
|
||||
case av.KeyTypeEmail:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
content.WriteString(v.Email.Content)
|
||||
case av.KeyTypePhone:
|
||||
if v.IsEmpty() {
|
||||
if v.IsBlank() {
|
||||
continue
|
||||
}
|
||||
content.WriteString(v.Phone.Content)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue