emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
To: Xebar Saram <zeltakc@gmail.com>
Cc: org mode <emacs-orgmode@gnu.org>
Subject: Re: org capture properties from a list of strings?
Date: Tue, 25 Apr 2017 18:19:20 +0200	[thread overview]
Message-ID: <87h91czchj.fsf@nicolasgoaziou.fr> (raw)
In-Reply-To: <CAOQHXPoNsCqRqx+W2GgMdxbFAPQqoFBpBukqBL+t6ZwkOGgRpg@mail.gmail.com> (Xebar Saram's message of "Tue, 25 Apr 2017 18:56:37 +0300")

Hello,

Xebar Saram <zeltakc@gmail.com> writes:

> thx Nicolas
>
> really appreciate your answer! though im very week in coding so im
> struggling to understand. but perhaps an example will help. the following
> is a part of my capture:
>
> (add-to-list 'org-capture-templates
> '("ff" "Food"
> entry
> (file+headline (concat pmm "/org/files/agenda/food.org") "Inbox")
> "* COOK %^{Recipe Name}
> :PROPERTIES:
> :ID: %(org-id-uuid)
> :Time: %^{minutes|-|10|15|30|60}
> :Rating: %^{rating?|-|1|2|3|4|5}
> :Source:  %x
> :Cuisine:
> %^{Cuisine?|-|Indian|Thai|Vietnamese|Asian|Chinese|Israeli|Italian|American|EastEuro|Mexican|French|Persian|Austrian}
> :Type: %^{Type?|-|main|side|starter|sweets|drinks|sauce|breakfast}
> :Main.ing:
>  %^{main.ing?|-|chicken|beef|potatos|fish|seafood|shrimp|rice|pasta|fruit}
> :Serves: %^{Serves?|-|1|2|4|6|8}
> :END:
>
> %^{prompt|*** Ingredients}
> %?
> %^{prompt|*** Preparation}
>
> "
> "Capture Template for food recipe"
> ))
>
>
> so do i need a separate  mapconcat #'number-to-string for each property
> value (time,type etc?)

Yes, you do. However, #'number-to-string is only useful if you're
inserting numbers. I think you can use the more general
#'prin1-to-string everywhere instead, e.g.,

  (mapconcat #'prin1-to-string '(Indian Thai Vietnamese Asian Chinese) "|")

or even, using strings

  (mapconcat #'identity '("Indian" "Thai" "Vietnamese" "Asian" "Chinese") "|")

> and how dows the %s know which mapconcat command to refer to?

The are processed by order. The first "%s" refers to the first
mapconcat, the second "%s" to the second mapconcat, and so on...

Regards,

-- 
Nicolas Goaziou                                                0x80A93738

  reply	other threads:[~2017-04-25 16:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-23 14:41 org capture properties from a list of strings? Xebar Saram
2017-04-25  7:45 ` Xebar Saram
2017-04-25  8:00   ` Nicolas Goaziou
2017-04-25 15:56     ` Xebar Saram
2017-04-25 16:19       ` Nicolas Goaziou [this message]
2017-04-26 12:28         ` Xebar Saram
2017-04-26 14:13           ` Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87h91czchj.fsf@nicolasgoaziou.fr \
    --to=mail@nicolasgoaziou.fr \
    --cc=emacs-orgmode@gnu.org \
    --cc=zeltakc@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).