ox-org: Add footnote prefix

* lisp/ox-org.el (org-org-section): Add mandatory "fn" prefix to
  footnotes.

Reported-by: Nick Dokos <ndokos@gmail.com>
<http://permalink.gmane.org/gmane.emacs.orgmode/107366>
This commit is contained in:
Rasmus 2016-05-25 08:41:12 +02:00
parent 2a8a8b3109
commit 21fa7efa99
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ a communication channel."
(mapconcat
(lambda (d)
(org-element-normalize-string
(concat (format "[%s] "(car d))
(concat (format "[fn:%s] "(car d))
(org-export-data (cdr d) info))))
footnotes-alist "\n"))))
(make-string (or (org-element-property :post-blank section) 0) ?\n)))