Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See
http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ I'm using the footnote facility in an org document expecting an exported Markdown document to provide hyperlinks between the reference and the footnote. Here's some sample Markdown text: Lots of text[fn:1]. Even more text [fn:1] Lies. I expect it to be converted to the following: Lots of text<sup><a id="fnr.1" class="footref" href="#fn.1">1</a></sup>. Even more text <div id="footnotes"> <h2 class="footnotes">Footnotes: </h2> <div id="text-footnotes"> <div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1">1</a></sup> Lies.</div> </div> </div> Instead I get the following: Lots of text. Even more text <div id="footnotes"> <h2 class="footnotes">Footnotes: </h2> <div id="text-footnotes"> <div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1">1</a></sup> Lies.</div> </div> </div> The difference should be clear, I expect to get a hyperlink with a superscript reference number pointing to the relevant footnote, instead I get neither a link nor a reference. It's completely missing in the actual output. Emacs : GNU Emacs 24.4.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.14.3) of 2014-10-21 on bitzer.hoetzel.info Package: Org-mode version 8.2.10 (8.2.10-elpa @ /home/wasa/.emacs.d/elpa/org-20141020/)