Re: [PATCH] Add org-md-src-block for src-block formater

2020-08-27 Thread Berry, Charles
You might want to browse the ox-ravel repository[1]. It provides a collection of exporters that support reformatting src blocks and inline src blocks for a variety of output formats (including markdown). Basically, it will produce a derived backend that adds source block reformatting to whateve

Re: [PATCH] Add org-md-src-block for src-block formater

2020-08-27 Thread Naoya Yamashita
> This is a feature. "ox-md" exports to vanilla Markdown, which doesn't > support such syntax. You may want to use other back-ends, e.g., > "ox-gfm". Thanks for letting me know that. I would try it. 2020年8月27日(木) 14:34 Nicolas Goaziou : > Hello, > > Naoya Yamashita writes: > > > I found `ox-md`

Re: [PATCH] Add org-md-src-block for src-block formater

2020-08-26 Thread Nicolas Goaziou
Hello, Naoya Yamashita writes: > I found `ox-md` exporter drop src-block language information. > My patch fixes the behavior. This is a feature. "ox-md" exports to vanilla Markdown, which doesn't support such syntax. You may want to use other back-ends, e.g., "ox-gfm". Regards, -- Nicolas Goa

[PATCH] Add org-md-src-block for src-block formater

2020-08-26 Thread Naoya Yamashita
```markdown # Table of Contents ```python print(1 + 2) ``` ```emacs-lisp (print "hello") ``` ``` something source code ``` ``` From 0ffa1f8f6dede26b7f1e8ce4afc1fbcd2f45755b Mon Sep 17 00:00:00 2001 From: conao3 Date: Thu, 27 Aug 2020 13:52:50 +0900 Subject: [PATCH] Add org-md-sr