larstvei / ox-gfm

Github Flavored Markdown Back-End for Org Export Engine
230 stars 44 forks source link

Forcing source blocks to be wrapped by ``` ... ``` ? #41

Open georgewsinger opened 5 years ago

georgewsinger commented 5 years ago

The following

#+BEGIN_SRC C++
//Test
#+END_SRC

gets exported as

    //Test

But is there a way to force it to get exported as

```C++
//Test

```

?