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
3d0deadf41
commit
105dedd0d9
|
@ -2868,7 +2868,7 @@ See `org-html-format-inlinetask-function' for details."
|
|||
(org-html-format-headline-default-function
|
||||
todo todo-type priority text tags info)
|
||||
(org-html-close-tag "br" nil info)
|
||||
contents))
|
||||
(or contents "")))
|
||||
|
||||
;;;; Italic
|
||||
|
||||
|
|
Loading…
Reference in New Issue