Browse Source

fix: quoted properties are not shown

Tienson Qin 4 years ago
parent
commit
d29c4fe71e
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/main/frontend/text.cljs

+ 3 - 0
src/main/frontend/text.cljs

@@ -93,6 +93,9 @@
   ([s {:keys [un-brackets?]
        :or {un-brackets? true}}]
    (cond
+     (and (string? s) (util/wrapped-by-quotes? s))
+     (util/unquote-string s)
+
      (and (string? s) (re-find markdown-link s))
      s