Documents

Documenter.Documents.getpluginMethod
getplugin(doc::Document, T)

Retrieves the Plugin type for T stored in doc. If T was passed to makedocs, the passed type will be returned. Otherwise, a new T object will be created using the default constructor T().

source
Documenter.Documents.navpathMethod

Constructs a list of the ancestors of the navnode (inclding the navnode itself), ordered so that the root of the navigation tree is the first and navnode itself is the last item.

source
Documenter.Documents.populate!Method
populate!(document)

Populates the ContentsNodes and IndexNodes of the document with links.

This can only be done after all the blocks have been expanded (and nodes constructed), because the items have to exist before we can gather the links to those items.

source
Documenter.Documents.walkMethod
walk(f, meta, element)

Calls f on element and any of its child elements. meta is a Dict containing metadata such as current module.

source