JunoLab / Weave.jl

Scientific reports/literate programming for Julia
http://weavejl.mpastell.com
MIT License
823 stars 94 forks source link

[BUG] an extra empty line added with echo=true #400

Closed shg closed 3 years ago

shg commented 3 years ago

With doctype="multimarkdown", by weaving

```julia; echo=true
1
```

I get

```julia

1
```

```
1
```

You see an extra empty line before "1" in the echoed output. If I add a semicolon like

```julia; echo=true
1;
```

then the result does not contain the extra empty line.

```julia
1;
```

The extra empty line seems to be rendered with the other doctypes too (I haven't checked all of them though).

ghost commented 3 years ago

I have the same problem. It happens on github and pandoc doctypes too.

aviatesk commented 3 years ago

will be fixed in v0.10.6