aaren / notedown

Markdown <=> IPython Notebook
BSD 2-Clause "Simplified" License
854 stars 115 forks source link

Code blocks in markdown #75

Open phcerdan opened 6 years ago

phcerdan commented 6 years ago

notedown is not able to keep code blocks in markdown when converting to notebooks. Raised in a plugin using notedown.

For example:

    Hello, this is markdown with a code block:
    ```bash
    export HELLO=HOLA

When converted to a notebook:
Hello, this is markdown with a code block:

```{.python .input}
%%bash
export HELLO=HOLA
```
eric-haibin-lin commented 5 years ago

is this resolved?