benjypng / firefox-extension-logseq-quickcapture

firefox-extension-logseq-quickcapture
MIT License
37 stars 4 forks source link

How to modify the [[quick capture]] description? #18

Open maikol-solis opened 4 months ago

maikol-solis commented 4 months ago

Hi, it's basically the title.

The template for each capture is fixed to

** <Time> ** [[quick capture]]:  [[Link][Title]]

I would like to know if it's possible to change the [[quick capture]] part with a meaningful description for my to-do list.

Best.

ivan-danilov commented 4 months ago

@maikol-solis this plugin only sends information to the open logseq instance through custom URL Scheme. The handling itself is performed by logseq, and there's section in config.edn to define templates for quick captures.

I didn't want [[quick capture]] too, so I modified mine as follows:

 :quick-capture-templates
 {:text "{time}: {url}"
  :media "[[quick capture]] **{time}**: {url}"}
maikol-solis commented 4 months ago

Thanks. This is the information that I was looking for. Best.