emacs - in org-mode, how to create checkbox items in org-capture? -
Is it possible to create a org-capture
template, which is the text in a capture file Contains a specified title (heading every time) but did not make new headlines beyond that? That is, instead of putting it under the *% U
, instead of inserting the text captured under \ n- []
? I tried to do this, but I am getting errors.
Here's my attempt:
(setq org-capture-templates (quote (("" " Later "entry" (file + title "scratch.org" "later") "\" \ n \ n \ n- []%? \ N \ n ": finally T: kill-buffer t))))
Here's what the organization file looks like:
* Notes Lorraine Ipsam Deller Sit Amet. * Later * Work
Here's what it should look like later:
* Note The second occupation will be here - [] The first captured lesson will be here * Work
Post-text "itemprop =" text ">
In the orge-capture templates, entry
creates a new title for the checkbox item, instead of using checkitem
.
(setq org-capture-templates (("l" "later" Chekkitt (file + title "scratch.org" "later") "[]%? \ N \ n ": Finally T: kill-buffer T)))
Comments
Post a Comment