LaTeX export: Do not use "|" as verbatim delimiter

This causes problems in tables.

You have now two ways to make verbatim things.  Use ~xyz~ or =xyz=
depending on whether ~ or = might occur in the string......
This commit is contained in:
Carsten Dominik 2009-02-02 12:15:57 +01:00
parent a9618e4e45
commit 2d2359741a
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2009-02-02 Carsten Dominik <carsten.dominik@gmail.com>
* org-export-latex.el (org-export-latex-emphasis-alist): Use = and
~ as verbatim delimiters.
* org-exp.el (org-export-html-format-image): New argument
PAR-OPEN.
(org-export-as-html): Pass par-open to

View file

@ -165,8 +165,8 @@ to represent the section title."
("/" "\\emph{%s}" nil)
("_" "\\underline{%s}" nil)
("+" "\\texttt{%s}" nil)
("=" "\\verb|%s|" nil)
("~" "\\verb|%s|" t))
("=" "\\verb=%s=" nil)
("~" "\\verb~%s~" t))
"Alist of LaTeX expressions to convert emphasis fontifiers.
Each element of the list is a list of three elements.
The first element is the character used as a marker for fontification.