mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-29 07:58:21 +00:00
org-latex: check for protection before wrapping ": " lines as verbatim
* lisp/org-latex.el (org-export-latex-fixed-width): check for protection before wrapping ": " lines as verbatim
This commit is contained in:
parent
a8a26f245b
commit
da8fffa5a4
@ -1537,20 +1537,20 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
|
||||
"When OPT is non-nil convert fixed-width sections to LaTeX."
|
||||
(goto-char (point-min))
|
||||
(while (re-search-forward "^[ \t]*:\\([ \t]\\|$\\)" nil t)
|
||||
(if opt
|
||||
(progn (goto-char (match-beginning 0))
|
||||
(insert "\\begin{verbatim}\n")
|
||||
(while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
|
||||
(replace-match (concat (match-string 1)
|
||||
(match-string 2)) t t)
|
||||
(forward-line))
|
||||
(insert "\\end{verbatim}\n\n"))
|
||||
(progn (goto-char (match-beginning 0))
|
||||
(while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
|
||||
(replace-match (concat "%" (match-string 1)
|
||||
(match-string 2)) t t)
|
||||
(forward-line))))))
|
||||
|
||||
(org-if-unprotected
|
||||
(if opt
|
||||
(progn (goto-char (match-beginning 0))
|
||||
(insert "\\begin{verbatim}\n")
|
||||
(while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
|
||||
(replace-match (concat (match-string 1)
|
||||
(match-string 2)) t t)
|
||||
(forward-line))
|
||||
(insert "\\end{verbatim}\n\n"))
|
||||
(progn (goto-char (match-beginning 0))
|
||||
(while (looking-at "^\\([ \t]*\\):\\(\\([ \t]\\|$\\).*\\)$")
|
||||
(replace-match (concat "%" (match-string 1)
|
||||
(match-string 2)) t t)
|
||||
(forward-line)))))))
|
||||
|
||||
(defvar org-table-last-alignment) ; defined in org-table.el
|
||||
(defvar org-table-last-column-widths) ; defined in org-table.el
|
||||
|
Loading…
Reference in New Issue
Block a user