From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michel Kuhlmann Subject: ox-md conforming pandoc-markdown Date: Tue, 21 Jan 2014 12:00:01 +0100 Message-ID: <20140121110001.GA7401@s15427742.onlinehome-server.info> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59293) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W5Zfv-0006Ry-B0 for emacs-orgmode@gnu.org; Tue, 21 Jan 2014 06:39:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W5Zfm-000637-HV for emacs-orgmode@gnu.org; Tue, 21 Jan 2014 06:39:23 -0500 Received: from s15427742.onlinehome-server.info ([87.106.41.91]:40432) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W5Zfm-00062l-BP for emacs-orgmode@gnu.org; Tue, 21 Jan 2014 06:39:14 -0500 Content-Disposition: inline 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 Hi, I often convert files with `pandoc`. Currently there is no pandoc-org-mode-reader, so I'm using markdown as an intermediate step. I'm aware of ; this also uses `ox-md`, so the issue applies also there. I found these issues inconvenient: - Listings create blank-lines in between + Currently - uno - uno - dos -> - dos - tres - tres + Desired - uno - uno - dos -> - dos - tres - tres - Formulas are getting surrounded by \( \); + Currently $Q_{max}$ -> \(Q_{max}\) + Desired $Q_{max}$ -> $Q_{max}$ - customisable meta-data export (currently nothing exported) of, say, #+TITLE: myTitle #+KEYWORDS: cat1 cat2 #+AUTHOR: meMyself #+DATE : 2014-01-21 #+OPTIONS: toc:t + Desired * meta-yaml-block --- title: myTitle author: meMyself catgories: cat1 cat2 date: 2014-01-21 toc: toc:t ... * pandoc header % myTitle % meMyself % 2014-01-21 Kind regards, Michel