소스 검색

Merge branch 'maint'

Nicolas Goaziou 8 년 전
부모
커밋
698f020be1
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      contrib/lisp/ox-confluence.el

+ 3 - 3
contrib/lisp/ox-confluence.el

@@ -170,9 +170,9 @@ a communication channel."
 
 (defun org-confluence-table-cell  (table-cell contents info)
   (let ((table-row (org-export-get-parent table-cell)))
-    (concat
-     (and (org-export-table-row-starts-header-p table-row info) "|")
-     " " contents "|")))
+    (concat (and (org-export-table-row-starts-header-p table-row info) "|")
+	    (if (= (length contents) 0) " " contents)
+	    "|")))
 
 (defun org-confluence-template (contents info)
   (let ((depth (plist-get info :with-toc)))