emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] org-mode table with backslash inside fails to export to DocBoo


From: niels giesen
Subject: [Orgmode] org-mode table with backslash inside fails to export to DocBook
Date: Fri, 07 Jan 2011 11:03:32 +0100

Hi Baoqiu,

A file with the following contents fails to export to Docbook:

* Table with a backslash in it

  | \ |

It gives the following error

"Invalid use of `\' in replacement text"

The following changes (replace-match literally in `org-export-docbook-finalize-table') solves this problem for me, but I would not know whether this would break anything else.

diff --git a/lisp/org-docbook.el b/lisp/org-docbook.el
index 91ebb97..ed835b0 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)
                     "</table>")
-                nil nil table)
+                nil t table)
        table))
     ;; Change <table> into <informaltable> 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)
                   "</informaltable>")
-              nil nil table-with-label)
+              nil t table-with-label)
       table-with-label)))

 ;; Note: This function is very similar to

Regards, Niels.

--

http://pft.github.com

Attachment: pgp__xI2MpUWV.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]