You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We shouldn't accept format objects (e.g. HTML(...) or LaTeX(...)) as positional arguments to makedocs. Currently you can pass them as a positional arguments (e.g. makedocs(LaTeX(), ...)) because they are <: Plugin. They won't have any effect though, since the output format is handled by the format keyword.
We should probably not declare HTML etc. to be <: Plugin in the first place. Instead perhaps a new abstract Writer type?
We are actually currently messing up in the test/example builds:
We shouldn't accept format objects (e.g.
HTML(...)
orLaTeX(...)
) as positional arguments tomakedocs
. Currently you can pass them as a positional arguments (e.g.makedocs(LaTeX(), ...)
) because they are<: Plugin
. They won't have any effect though, since the output format is handled by theformat
keyword.We should probably not declare
HTML
etc. to be<: Plugin
in the first place. Instead perhaps a new abstractWriter
type?We are actually currently messing up in the
test/example
builds:Documenter.jl/test/examples/make.jl
Lines 142 to 158 in eae33a0
The text was updated successfully, but these errors were encountered: