From 9f8b10413cb143238b7b1715e2763c9da0c00a98 Mon Sep 17 00:00:00 2001 From: niels giesen Date: Fri, 7 Jan 2011 22:55:46 +0000 Subject: [PATCH] Fix table export to docbook when field contains a backslash * lisp/org-docbook.el (org-export-docbook-finalize-table): Do literal replacements. --- lisp/org-docbook.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-docbook.el b/lisp/org-docbook.el index 91ebb9719..ed835b01d 100644 --- a/lisp/org-docbook.el +++ b/lisp/org-docbook.el @@ -1367,7 +1367,7 @@ TABLE is a string containing the HTML code generated by (match-string 1 table) (match-string 4 table) "") - nil nil table) + nil t table) table)) ;; Change into if caption does not exist. (if (string-match @@ -1377,7 +1377,7 @@ TABLE is a string containing the HTML code generated by (match-string 1 table-with-label) (match-string 3 table-with-label) "") - nil nil table-with-label) + nil t table-with-label) table-with-label))) ;; Note: This function is very similar to -- 2.11.4.GIT