[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Viewing the default capture template
From: |
Michael Heerdegen |
Subject: |
Re: Viewing the default capture template |
Date: |
Thu, 26 Dec 2024 23:35:52 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Christopher Howard <christopher@librehacker.com> writes:
> > Does eww have an associated separate org capture template? I don't see
> > anything like that defined in eww.el...
>
> I think this is basically the question I'm asking. If I don't pass a
> template in for the org-capture-templates list entry, whatever is used
> by default somehow works in EWW buffers, generating a proper org link
> with title. I want to see what that template is, so I can make
> something similar.
Did you bind or customize `org-capture-templates'? The default is nil.
With the default of nil `org-capture' offers only one template as far as
I understand, which is hardcoded in `org-capture-select-template' - this
one:
#+begin_src emacs-lisp
("t" "Task" entry (file+headline "" "Tasks")
"* TODO %?\n %u\n %a")
#+end_src
Is this the template you are using?
Michael.