Browse Source

ox-html: Fix typo preventing insertion of link up/link home anchors

* lisp/ox-html.el (org-html-template): Fix typo preventing insertion
  of link up/link home anchors.

Thanks to Daniel G. Gerber for noticing it.
Nicolas Goaziou 12 năm trước cách đây
mục cha
commit
f9ae004aca
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lisp/ox-html.el

+ 1 - 1
lisp/ox-html.el

@@ -1614,7 +1614,7 @@ holding export options."
    "<body>\n"
    (let ((link-up (org-trim (plist-get info :html-link-up)))
 	 (link-home (org-trim (plist-get info :html-link-home))))
-     (unless (and (string= link-up "") (string= link-up ""))
+     (unless (and (string= link-up "") (string= link-home ""))
        (format org-html-home/up-format
 	       (or link-up link-home)
 	       (or link-home link-up))))