pandoc icon indicating copy to clipboard operation
pandoc copied to clipboard

Exporting Example blocks from Org to Markdown

Open fwinkl opened this issue 3 weeks ago • 0 comments

When exporting example blocks from Org mode to Markdown, the language should not be "example" but omitted.

This is similar to https://github.com/jgm/pandoc/issues/4748.

> cat test.org
#+BEGIN_EXAMPLE
Line 1
Line 2
#+END_EXAMPLE

> cat test.org | pandoc --from=org --to=markdown
``` example
Line 1
Line 2
```

Instead this should be converted to:

```
Line 1
Line 2
```

Pandoc version? pandoc 3.8.3 on Ubuntu

fwinkl avatar Dec 10 '25 10:12 fwinkl