ox-html: Fix exporting inlinetasks without contents
* lisp/ox-html.el (org-html-format-inlinetask-default-function): Do not export no-contents as string "nil". Just use empty string.
This commit is contained in:
parent
dbea900d60
commit
0d24857ccf
|
@ -2921,7 +2921,7 @@ INFO arguments."
|
||||||
(org-html-format-headline-default-function
|
(org-html-format-headline-default-function
|
||||||
todo todo-type priority text tags info)
|
todo todo-type priority text tags info)
|
||||||
(org-html-close-tag "br" nil info)
|
(org-html-close-tag "br" nil info)
|
||||||
contents))
|
(or contents "")))
|
||||||
|
|
||||||
;;;; Italic
|
;;;; Italic
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue