emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Exporting blocks of text completely verbatim


From: Charles C. Berry
Subject: Re: [O] Exporting blocks of text completely verbatim
Date: Thu, 9 Feb 2017 11:19:36 -0800
User-agent: Alpine 2.20 (OSX 67 2015-01-07)

On Thu, 9 Feb 2017, Vicente Vera wrote:

Hello. This discussion
https://lists.gnu.org/archive/html/emacs-orgmode/2017-02/msg00163.html
points out that Org tables are converted to HTML tables when exporting
through "ox-md". Leaving Markdown-related issues aside, I've stumbled
upon this problem a while back.

It is suggested that wrapping the table within a "#+(BEGIN|END)_EXPORT
md" should leave it as-is in the exported document but that is not the
case. The table gets converted to HTML anyway.


Not in recent versions of org. Here is an example of a table that is exported as a table without any html-ization:

#+BEGIN_SRC emacs-lisp :results raw
  (org-export-string-as
   "
  ,#+begin_export md
  | a |
  | b |
  ,#+end_export"
   'md t)

#+END_SRC

#+RESULTS:
| a |
| b |


Of course, the comma escapes are stripped before `org-export-string-as' sees the string.

HTH,

Chuck



reply via email to

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