mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-26 07:33:39 +00:00
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:
parent
a9618e4e45
commit
2d2359741a
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user