Morten Piibeleht

Results 376 comments of Morten Piibeleht

We should probably loosen the regex here, by allowing arbitrary whitespace here: https://github.com/JuliaDocs/Documenter.jl/blob/056284a9850a0e74a439a694e267aff20a7311f5/src/DocTests.jl#L193

Yeah, that also crossed my mind. But I do think that the current error you get is not very helpful. I think we have three options here: 1. We just...

Let's go with (3). But I would suggest complaining about the whitespace only if it actually is there. I.e. still update the regex here https://github.com/JuliaDocs/Documenter.jl/blob/056284a9850a0e74a439a694e267aff20a7311f5/src/DocTests.jl#L193-L194 but `@docerror` if there we...

The problem here is that this would have to be supported on a parser level, which currently is the Julia Markdown parser. However, I hope to get support for [CommonMark.jl](https://github.com/MichaelHatherly/CommonMark.jl)...

There is no root-level `include/` directory in the repository..? Are you sure you're not seeing some files from like `make install` or something like that?

I still see the issue with both Julia 1.0.3 and 1.2.0-DEV.74 on the Revise master. I'll see if I can put together a script + env to reliably reproduce this.

I've put together a restricted environment and an exact list of commands that should reproduce the issue. Since it is dependent on the REPL loop, I couldn't really make it...

I think I ran into this when I was working on some functions and I needed to restart Julia over and over again (I was probably updating type definitions). So...

I got hit with this again, but this time I figured out that I can just use the same solution as the docs recommend for `startup.jl`: ``` julia -i -e'atreplinit()...

It should not be a problem if you follow the [recommended way](https://timholy.github.io/Revise.jl/dev/config/#Using-Revise-by-default-1) though? The `atreplinit` should never get called if you're running a script, right?