Split out text ns to graph-parser

This commit is contained in:
Gabriel Horner
2022-05-09 14:45:28 -04:00
parent f529777d78
commit 65804b4183
29 changed files with 131 additions and 103 deletions

View File

@@ -7,7 +7,7 @@
[frontend.db :as db]
[frontend.format :as format]
[frontend.state :as state]
[frontend.text :as text]
[logseq.graph-parser.text :as text]
[frontend.utf8 :as utf8]
[frontend.util :as util]
[frontend.util.property :as property]
@@ -185,7 +185,7 @@
(remove string/blank? v)
(if (string/blank? v)
nil
(text/parse-property format k v)))
(text/parse-property format k v (state/get-config))))
k (keyword k)
v (if (and
(string? v)