language-weave
language-weave copied to clipboard
Log messages in julia code blocks break parsing
This text is normal
```julia
julia> @info "test"
[ Info: test
```
This text is not
You sure that isn't happening because of the julia> prompt or the open bracket or something like that?
Great question. Doesn't seem to be though:
Text
```julia
julia> @info "test"
```
Text
```julia
[ Info: test
```
Text
This is looking at the scope on each of the Text lines
Sorry, to clarify - I think it is the open bracket in the logging output.
This causes the same problem:
```julia
[
```
Text