1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2025-01-31 20:48:37 +00:00

ox-texinfo: Insert blank line between sectioning command and contents

* lisp/ox-texinfo.el (org-texinfo-headline): Insert blank line between
  sectioning command and contents.
This commit is contained in:
Nicolas Goaziou 2017-07-25 19:42:03 +02:00
parent 8112629d37
commit ed6849d18d

View File

@ -877,7 +877,8 @@ holding contextual information."
(funcall (plist-get info :texinfo-format-headline-function)
todo todo-type priority text tags))
(contents
(concat (if (org-string-nw-p contents)
(concat "\n"
(if (org-string-nw-p contents)
(concat "\n" contents)
"")
(let ((index (org-element-property :INDEX headline)))