forked from mirrors/org-cv
fix awesome tags
This commit is contained in:
parent
c6805e1d92
commit
73280f3070
1 changed files with 5 additions and 1 deletions
|
@ -231,7 +231,11 @@ holding export options."
|
|||
"Format HEADLINE as as cventry.
|
||||
CONTENTS holds the contents of the headline. INFO is a plist used
|
||||
as a communication channel."
|
||||
(let* ((entrytype (org-element-property :CV_ENV headline))
|
||||
(let* ((entrytype
|
||||
(cl-find-if (lambda (s) (or (string-prefix-p "cv" s)
|
||||
(string-prefix-p "letter" s)))
|
||||
(cons (org-element-property :CV_ENV headline)
|
||||
(org-export-get-tags headline info))))
|
||||
(title (org-export-data (org-element-property :title headline) info))
|
||||
(date (org-element-property :DATE headline))
|
||||
(from-date (or (org-element-property :FROM headline) date))
|
||||
|
|
Loading…
Reference in a new issue