Michael Hatherly

Results 264 comments of Michael Hatherly

Ref #144: for some extra discussion on this.

Yeah, using `gh-pages` is the only recommended way of hosting the generated docs. Committing generated docs, whether html or md, to `master` really shouldn't be done. As far as I...

> It isn't, I'm seeing an increasing number of packages put their built docs in master. Probably partly due to GitHub's new "host your docs in `docs/` on `master`"-feature, which...

The doc concatenation can be a bit annoying sometimes... though you should be able to search for docs for methods that only match a specific signature with: ``` julia> "docs...

That one may be pretty tricky to make interactive.

Thanks for reporting. A reproducible error below. I assume this is what you're refering to, yes? ``` julia> struct T end julia> Base.show(io::IO, ::T) = error("bad!") julia> T() Error showing...

Even if this could be regarded as just an upstream issue, I'd like to fix it here anyway.

> About the API, draw now has a facet keyword argument to pass keywords specific to facet plots (see eg here), so maybe this could also be set there as...

Would be nice to get this added. > as far as I can see, Mermaid.js does not support unicode characters. Therefore, the code above only displays variable names in the...

> Seems related to the nested xml... Yeah, it's just being caused by certain types of HTML blocks and their precedence: https://github.com/MichaelHatherly/CommonMark.jl/blob/master/src/parsers/blocks.jl#L3-L11. This is something that's defined within the spec...