Michael Hatherly

Results 264 comments of Michael Hatherly

Thanks for reporting this @zenna. Which version of Docile are you using, also what's the extact commit from Julia 0.3 you're on?

BTW, have you tried using the new bare docstrings that were recently added to `Base`? Docile also supports bare docstrings in Julia 0.3 without needing to be imported into your...

~~Having a bit of trouble getting `Sigma.jl` to load. Which other deps do I need? Any particular branches that I should be checking out rather than `master`?~~ Got it working,...

With [this](https://gist.github.com/MichaelHatherly/28c1dfa4805c55551671) diff (edit: apologies for the whitespace mangling my editor has done to the diff) I've managed to get `import Sigma` to work – with a couple of ambigouity...

> I just read about the bare strings earlier today, I'm going to change to that, see if it helps. Since you don't need to actually do `using Docile` in...

Looks like a 0.4 `Int` constructor slipped through... sorry about that, should be a simple fix with `@compat`.

Could you apply this diff and see if it works then? ``` diff diff --git a/src/render.jl b/src/render.jl index d6ca1a5..2913b77 100644 --- a/src/render.jl +++ b/src/render.jl @@ -214,7 +214,7 @@ function generate_html_id(s::AbstractString)...

Cool, I'll tag a new release of Lexicon with that compat fix tomorrow morning then, thanks for testing that. Re: the `for`-loop / `include` problem, trying to create a minimal...

The Lexicon fix is now in [this tagged version](https://github.com/JuliaLang/METADATA.jl/pull/2881).

For some reason I can't reproduce either of the problems at the moment. The first one would probably be solved with ``` diff diff --git a/src/Collector/search.jl b/src/Collector/search.jl index 9f27955..b657cdc 100644...