org-html.el: add a space before attributes in org-html-make-link.

This commit is contained in:
Bastien Guerry 2011-01-04 17:24:47 +01:00
parent a39c35fcd9
commit 8d879c3870
1 changed files with 1 additions and 1 deletions

View File

@ -789,7 +789,7 @@ MAY-INLINE-P allows inlining it as an image."
(message "image %s %s" thefile org-par-open) (message "image %s %s" thefile org-par-open)
(org-export-html-format-image thefile org-par-open)) (org-export-html-format-image thefile org-par-open))
(concat (concat
"<a href=\"" thefile "\"" attr ">" "<a href=\"" thefile "\"" (if attr (concat " " attr)) ">"
(org-export-html-format-desc desc) (org-export-html-format-desc desc)
"</a>"))))) "</a>")))))