Explorar el Código

fix(zotero): imported url attachment open link

Weihua Lu hace 4 años
padre
commit
4f577114fa
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      src/main/frontend/extensions/zotero/extractor.cljs

+ 4 - 1
src/main/frontend/extensions/zotero/extractor.cljs

@@ -170,7 +170,10 @@
             (markdown-link title (str "file://" path) true)
             (markdown-link title (str "file://" path)))))
       "imported_url"
-      (markdown-link title url)
+      (str
+       (markdown-link title url)
+       " "
+       (zotero-imported-file-macro (item-key item) filename))
       "linked_url"
       (markdown-link title url))))