unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* org-mode ASCII export of in-word LaTeX symbols support
@ 2010-10-14 15:59 Arik Mitschang
  0 siblings, 0 replies; only message in thread
From: Arik Mitschang @ 2010-10-14 15:59 UTC (permalink / raw)
  To: emacs-devel

Hi emacs-devel,

I would like to suggest the following small change to the org-mode
ascii export feature in emacs 23.2. The reason for this is because
org-mode export supports embedded LaTeX in a LaTeX sort of fashion
where a symbol can be placed inside a word provided it is terminated
with '{}'. However in an ascii export the '{}' remains trailing the
converted symbol making it very difficult to seamlessly support these
inlined symbols across multiple export formats.

The manual likewise states:
"If you need such a symbol inside a word, terminate it like this: ‘\Aacute{}stor’."

indicating that this form is (or should be) supported. The fix is
quite simple, the regexp for matching LaTeX symbols to be exported
needs to allow for the terminating '{}' if existing. I have included
the necessary patch below.

Thanks alot,
~Arik

GNU Emacs 23.2.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.10.4) of 2010-07-26 on lacuna

--- org-ascii.el
+++ org-ascii.el
@@ -586,7 +586,7 @@
 (defun org-ascii-replace-entities ()
   "Replace entities with the ASCII representation."
   (let (e)
-    (while (re-search-forward "\\\\\\([a-zA-Z]+[0-9]*\\)" nil t)
+    (while (re-search-forward "\\\\\\([a-zA-Z]+[0-9]*\\)\\({}\\)?" nil t)
       (org-if-unprotected-at (match-beginning 1)
 	(setq e (org-entity-get-representation (match-string 1)
 					       org-export-ascii-entities))





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-10-14 15:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-14 15:59 org-mode ASCII export of in-word LaTeX symbols support Arik Mitschang

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).