소스 검색

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.
Nicolas Goaziou 7 년 전
부모
커밋
ed6849d18d
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lisp/ox-texinfo.el

+ 2 - 1
lisp/ox-texinfo.el

@@ -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)))