Ver Fonte

fix: shouldn't hide markers/priorities for db graphs

Fixes LOG-3090
Tienson Qin há 1 ano atrás
pai
commit
cb7b15402b
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      deps/graph-parser/src/logseq/graph_parser/mldoc.cljc

+ 3 - 1
deps/graph-parser/src/logseq/graph_parser/mldoc.cljc

@@ -145,7 +145,9 @@
     (->>
      (cond-> (default-config-map format)
        db-based?
-       (assoc :enable_drawers false))
+       (assoc :enable_drawers false
+              :parse_marker false
+              :parse_priority false))
      bean/->js
      js/JSON.stringify)))