소스 검색

ox-html: Do not output "nil" for empty sections

* lisp/ox-html.el (org-html-section): Do not output "nil" when section
  has no contents.

Reported-by: T.F. Torrey <tftorrey@tftorrey.com>
<http://permalink.gmane.org/gmane.emacs.orgmode/94464>
Nicolas Goaziou 11 년 전
부모
커밋
5ae0749e63
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/ox-html.el

+ 1 - 1
lisp/ox-html.el

@@ -3078,7 +3078,7 @@ holding contextual information."
 		(or (org-element-property :CUSTOM_ID parent)
 		    section-number
 		    (org-export-get-headline-id parent info))
-		contents)))))
+		(or contents ""))))))
 
 ;;;; Radio Target