Преглед изворни кода

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 година
родитељ
комит
f9ae004aca
1 измењених фајлова са 1 додато и 1 уклоњено
  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))))