From mboxrd@z Thu Jan 1 00:00:00 1970 From: cberry@tajo.ucsd.edu Subject: org-md fixed-width filter problems Date: Mon, 28 Jan 2013 09:03:18 -0800 Message-ID: <87d2wp5jft.fsf@tajo.ucsd.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44745) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tzs7U-0002so-2K for emacs-orgmode@gnu.org; Mon, 28 Jan 2013 12:03:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tzs7T-0007bv-2k for emacs-orgmode@gnu.org; Mon, 28 Jan 2013 12:03:44 -0500 Received: from plane.gmane.org ([80.91.229.3]:59340) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tzs7S-0007bk-PT for emacs-orgmode@gnu.org; Mon, 28 Jan 2013 12:03:42 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Tzs7d-0001Ke-2m for emacs-orgmode@gnu.org; Mon, 28 Jan 2013 18:03:53 +0100 Received: from tajo.ucsd.edu ([137.110.122.165]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 28 Jan 2013 18:03:53 +0100 Received: from cberry by tajo.ucsd.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 28 Jan 2013 18:03:53 +0100 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: emacs-orgmode@gnu.org The :translate-alist for the md backend has no entry for fixed-width, so it defaults to the parent org-e-html-fixed-width which uses (format "
\n%s
" ... So elements ,---- | : like | : this `---- get the html style markup. Some of the markdown processors I use don't like this. pandoc ignores the element entirely. The github blob generator copies it as verbatim. I have been using (fixed-width . org-md-verbatim) instead, but I think this is still not quite right. (IIUC, proper markdown uses four spaces at bol for such elements while org-md-verbatim uses surrounding backtics.) ? Chuck