From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Turn off html entities in md export Date: Fri, 26 Jun 2015 17:32:17 +0200 Message-ID: <87egkyv62m.fsf@nicolasgoaziou.fr> References: <87y4j6sy53.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47022) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8Vae-0006rK-W1 for emacs-orgmode@gnu.org; Fri, 26 Jun 2015 11:30:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z8Vad-0007vx-Da for emacs-orgmode@gnu.org; Fri, 26 Jun 2015 11:30:52 -0400 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:52225) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z8Vad-0007vk-3L for emacs-orgmode@gnu.org; Fri, 26 Jun 2015 11:30:51 -0400 In-Reply-To: (Rustom Mody's message of "Fri, 26 Jun 2015 20:49:44 +0530") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Rustom Mody Cc: emacs-orgmode Rustom Mody writes: > As https://bitbucket.org/tutorials/markdowndemo/overview#markdown-header-tab > shows > bitbucket md tables are very similar to org tables (and html is > disallowed) > > How to say (to ox-md) "Leave tables as they are" ? Write a derived export backend, e.g., ox-md-bb.el that will translate tables properly according to Bitbucket rules. You can also use a hook that will turn Org tables into Bitbucket markdown tables and wrap them within a #+begin_md...#+end_md block. Regards,