From 6914619f579120ca9a9fa2bb3e1ca48591180c22 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Thu, 8 May 2014 23:47:14 -0400 Subject: [PATCH] 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 --- lisp/ox-ascii.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el index a29b0b269..4e4d3e963 100644 --- a/lisp/ox-ascii.el +++ b/lisp/ox-ascii.el @@ -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 -- 2.11.4.GIT