emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org-contacts 5d5faa5e6b 051/154: org-contacts.el, add n


From: ELPA Syncer
Subject: [elpa] externals/org-contacts 5d5faa5e6b 051/154: org-contacts.el, add note property
Date: Fri, 9 Sep 2022 15:58:25 -0400 (EDT)

branch: externals/org-contacts
commit 5d5faa5e6bce64b2d45b47e84d20c464528e0067
Author: Feng Shu <tumashu@gmail.com>
Commit: Bastien Guerry <bzg@altern.org>

    org-contacts.el, add note property
    
    * org-contacts.el (org-contacts-note-property): New varible which add  note 
property
      (org-contacts-vcard-format): Add the ability  exporting  note property
---
 org-contacts.el | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/org-contacts.el b/org-contacts.el
index b85ae2dd11..5f16d41d7d 100644
--- a/org-contacts.el
+++ b/org-contacts.el
@@ -71,6 +71,11 @@ When set to nil, all your Org files will be used."
   :type 'string
   :group 'org-contacts)
 
+(defcustom org-contacts-note-property "NOTE"
+  "Name of the property for contact note."
+  :type 'string
+  :group 'org-contacts)
+
 (defcustom org-contacts-birthday-format "Birthday: %l (%Y)"
   "Format of the anniversary agenda entry.
 The following replacements are available:
@@ -841,6 +846,7 @@ to do our best."
                        (calendar-extract-month cal-bday)
                        (calendar-extract-day cal-bday))))
            (when nick (format "NICKNAME:%s\n" nick))
+           (when note (format "NOTE:%s\n" note))
            "END:VCARD\n\n")))
 
 (defun org-contacts-export-as-vcard (&optional name file to-buffer)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]