mirror of
https://github.com/correl/ox-confluence-en.git
synced 2024-11-23 11:09:54 +00:00
Export CUSTOM_ID property as anchor macro
This commit is contained in:
parent
093cdc2e07
commit
9bdf5aba9e
1 changed files with 10 additions and 9 deletions
|
@ -81,11 +81,12 @@ https://marketplace.atlassian.com/plugins/de.griffel.confluence.plugins.plant-um
|
|||
|
||||
CONTENTS holds the contents of the element. INFO is a plist
|
||||
holding contextual information."
|
||||
(let* ((text (org-export-data (org-element-property :title headline)
|
||||
info))
|
||||
(todo (org-export-data (org-element-property :todo-keyword headline)
|
||||
info))
|
||||
(let* ((text (org-export-data (org-element-property :title headline) info))
|
||||
(todo (org-export-data (org-element-property :todo-keyword headline) info))
|
||||
(custom-id (org-export-data (org-element-property :CUSTOM_ID headline) info))
|
||||
(level (org-export-get-relative-level headline info))
|
||||
(anchor (if (string= custom-id "") ""
|
||||
(format "{anchor:%s}\n" custom-id)))
|
||||
(todo-text (if (or (not (plist-get info :with-todo-keywords))
|
||||
(string= todo ""))
|
||||
""
|
||||
|
@ -95,7 +96,7 @@ holding contextual information."
|
|||
(t "green"))))
|
||||
(format "%s " (ox-confluence-en--macro "status" nil `((color . ,status-color) (title . ,todo))))))))
|
||||
;; Else: Standard headline.
|
||||
(format "h%s. %s%s\n%s" level todo-text text
|
||||
(format "%sh%s. %s%s\n%s" anchor level todo-text text
|
||||
(if (org-string-nw-p contents) contents ""))))
|
||||
|
||||
(defun ox-confluence-en-paragraph (paragraph contents info)
|
||||
|
|
Loading…
Reference in a new issue