I've got a table in Emacs org-mode, and the contents are regular expressions. I can't seem to figure out how to escape a literal pipe-character (|) that's part of a regex though, so it's interpreted as a table-cell separator. Could someone point me to some help? Thanks.

Update: I'm also looking for escapes for a slash (/), so that it doesn't trigger the start of an italic/emphasis sequence. I experimented with \/ and \// - for example, suppose I want the literal text /foo/ in a table cell. Here are 3 ways of attempting it:

| /foo/ | \/foo/ | \//foo/ |

In LaTeX export, that becomes:

\emph{foo}  &  \/foo/  &  \//foo/

So none of them is the plain /foo/ I'm hoping for.

link|improve this question

68% accept rate
feedback

1 Answer

up vote 5 down vote accepted

\vert for the pipe.

Forward slashes seem to work fine for me unescaped when exporting both to HTML and PDF.

link|improve this answer
Great! I'm also using braces for things like a\vert{}b, as otherwise it would be a\vertb and not work. As found on orgmode.org/worg/org-symbols.html . – Ken Williams Mar 4 '11 at 15:06
I can't seem to reproduce my weirdness of 2 different exports for slashes (so I edited that out of my question), but I added an example of trying to get literal slashes and not achieving it. – Ken Williams Mar 4 '11 at 15:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.