0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-12 11:40:05 +00:00

org-e-latex: Properly handle quotes at bol

* EXPERIMENTAL/org-e-latex.el (org-e-latex-quotes): Properly handle
  quotes at bol.
This commit is contained in:
Nicolas Goaziou 2012-04-12 12:44:16 +02:00
parent e307d08382
commit 256eafe32c

View file

@ -617,8 +617,14 @@ during latex export it will output
;;;; Plain text ;;;; Plain text
(defcustom org-e-latex-quotes (defcustom org-e-latex-quotes
'(("fr" ("\\(\\s-\\|[[(]\\)\"" . "«~") ("\\(\\S-\\)\"" . "") ("\\(\\s-\\|(\\)'" . "'")) '(("fr"
("en" ("\\(\\s-\\|[[(]\\)\"" . "``") ("\\(\\S-\\)\"" . "''") ("\\(\\s-\\|(\\)'" . "`"))) ("\\(\\s-\\|[[(]\\|^\\)\"" . "«~")
("\\(\\S-\\)\"" . "")
("\\(\\s-\\|(\\|^\\)'" . "'"))
("en"
("\\(\\s-\\|[[(]\\|^\\)\"" . "``")
("\\(\\S-\\)\"" . "''")
("\\(\\s-\\|(\\|^\\)'" . "`")))
"Alist for quotes to use when converting english double-quotes. "Alist for quotes to use when converting english double-quotes.
The CAR of each item in this alist is the language code. The CAR of each item in this alist is the language code.