Make superscripts produce a ^ in the output, instead of _

* ox-ascii.el (org-ascii-superscript): Change _ to ^ in the output.

Reported by Suvayu Ali: http://thread.gmane.org/gmane.emacs.orgmode/86014
This commit is contained in:
Nick Dokos 2014-05-08 23:47:14 -04:00
parent ef6f2465bd
commit 6914619f57
1 changed files with 2 additions and 2 deletions

View File

@ -1591,8 +1591,8 @@ contextual information."
CONTENTS is the contents of the object. INFO is a plist holding
contextual information."
(if (org-element-property :use-brackets-p superscript)
(format "_{%s}" contents)
(format "_%s" contents)))
(format "^{%s}" contents)
(format "^%s" contents)))
;;;; Strike-through