Documenter.jl icon indicating copy to clipboard operation
Documenter.jl copied to clipboard

A documentation generator for Julia.

Results 256 Documenter.jl issues
Sort by recently updated
recently updated
newest added

First time melding here. Hope i did not break anything.

In my package's documentation, I have a page `public.md` with the following contents: ````md # Public API ```@autodocs Modules = [MyPackage] Public = true Private = false ``` ```` And...

Type: Enhancement

Before this PR: | `strict` | Block that throws an exception | Build result | | -------- | ------------------------------ | ----------------------- | | `true` | `@example` | :x: fail |...

Type: Enhancement
Type: Breaking

This allows regex - substitution pairs to be passed as doctest filters, giving more control over filtering. For example, the following filter can be used to only retain the first...

Type: Enhancement

Example: ```julia """ ```jldoctest julia> 1+1 2 ``` """ function testfun1() end """ ```jldoctest; julia> 1+1 2 ``` """ function testfun2() end """ ```jldoctest aa; julia> 1+1 2 ``` """...

Type: Question

I have some situations where a `### Heading` is consistenly not rendered (locally and on github pages), although all markdown rules seem to be followed ![image](https://user-images.githubusercontent.com/25530332/174303791-7f6c67e3-5c7e-40e4-b7ed-4b18529ec8a9.png) I consequently get these...

Type: Question

Is there a way to suppress errors about missing documentation for unexported functions?

Type: Question

I'm hoping to speed up the displaying of search results after a page reload. It's nice and fast when updating the search box, but the building of the search dictionaries...

Type: Enhancement
Format: HTML

Hello, at the moment, reloading the search page or reloading a page built with Documenter leads to VERY noticeable lag on the first search. Since it's kind of unusual to...

Type: Enhancement
help wanted
Format: HTML

Hi, I'm a new user so apologies if I missed something in documentation--I'm wondering how to get Documenter to document a struct & macro that are exported? e.g. https://github.com/tbenst/Thunks.jl/blob/8f13f468c7b2b15b8cca4a33cb42df20cc18c20d/src/Thunks.jl#L120 exports...

Type: Question