Procházet zdrojové kódy

Added support for blockquote conversion in org-export-latex.el.
Also added *.elc to .gitignore.

Bastien Guerry před 17 roky
rodič
revize
e00ecff463
3 změnil soubory, kde provedl 14 přidání a 0 odebrání
  1. 1 0
      .gitignore
  2. 5 0
      ChangeLog
  3. 8 0
      lisp/org-export-latex.el

+ 1 - 0
.gitignore

@@ -9,6 +9,7 @@
 *.cp
 *.cps
 *.dvi
+*.elc
 *.fn
 *.fns
 *.html

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2008-05-06  Bastien Guerry  <bzg@altern.org>
+
+	* lisp/org-export-latex.el (org-export-latex-preprocess): Added
+	support for blockquotes.
+
 2008-05-05  Carsten Dominik  <dominik@science.uva.nl>
 
 	* lisp/org.el (org-read-date-analyze): Catch the case where only a

+ 8 - 0
lisp/org-export-latex.el

@@ -1096,6 +1096,14 @@ Regexps are those from `org-export-latex-special-string-regexps'."
     (replace-match (org-export-latex-protect-string
 		    (concat (match-string 1) "\\LaTeX{}")) t t)))
 
+  ;; Convert blockquotes
+  (goto-char (point-min))
+  (while (re-search-forward "^#\\+BEGIN_QUOTE" nil t)
+    (replace-match "\\begin{quote}" t t))
+  (goto-char (point-min))
+  (while (re-search-forward "^#\\+END_QUOTE" nil t)
+    (replace-match "\\end{quote}" t t))
+
   ;; Convert horizontal rules
   (goto-char (point-min))
   (while (re-search-forward "^----+.$" nil t)