[console_scripts]
docc = docc.cli:main

[docc.plugins]
docc.debug.transform = docc.plugins.debug:DebugTransform
docc.files.build = docc.plugins.files:FilesBuilder
docc.files.discover = docc.plugins.files:FilesDiscover
docc.html.context = docc.plugins.html:HTMLContext
docc.html.discover = docc.plugins.html:HTMLDiscover
docc.html.transform = docc.plugins.html:HTMLTransform
docc.listing.build = docc.plugins.listing:ListingBuilder
docc.listing.discover = docc.plugins.listing:ListingDiscover
docc.mistletoe.reference = docc.plugins.mistletoe:ReferenceTransform
docc.mistletoe.transform = docc.plugins.mistletoe:DocstringTransform
docc.python.build = docc.plugins.python:PythonBuilder
docc.python.discover = docc.plugins.python:PythonDiscover
docc.python.transform = docc.plugins.python:PythonTransform
docc.references.context = docc.plugins.references:IndexContext
docc.references.index = docc.plugins.references:IndexTransform
docc.resources.build = docc.plugins.resources:ResourceBuilder
docc.search.build = docc.plugins.search:SearchBuilder
docc.search.context = docc.plugins.search:SearchContext
docc.search.discover = docc.plugins.search:SearchDiscover
docc.search.transform = docc.plugins.search:SearchTransform
docc.verbatim.transform = docc.plugins.verbatim:Transcribe

[docc.plugins.html]
docc.document:BlankNode = docc.plugins.html:blank_node
docc.document:ListNode = docc.plugins.html:list_node
docc.plugins.html:HTMLTag = docc.plugins.html:html_tag
docc.plugins.html:TextNode = docc.plugins.html:text_node
docc.plugins.listing:ListingNode = docc.plugins.listing:render_html
docc.plugins.mistletoe:MarkdownNode = docc.plugins.mistletoe:render_html
docc.plugins.python.nodes:Access = docc.plugins.python.html:render_access
docc.plugins.python.nodes:Attribute = docc.plugins.python.html:render_attribute
docc.plugins.python.nodes:Class = docc.plugins.python.html:render_class
docc.plugins.python.nodes:Docstring = docc.plugins.python.html:render_docstring
docc.plugins.python.nodes:Function = docc.plugins.python.html:render_function
docc.plugins.python.nodes:List = docc.plugins.python.html:render_list
docc.plugins.python.nodes:Module = docc.plugins.python.html:render_module
docc.plugins.python.nodes:Name = docc.plugins.python.html:render_name
docc.plugins.python.nodes:Parameter = docc.plugins.python.html:render_parameter
docc.plugins.python.nodes:Tuple = docc.plugins.python.html:render_tuple
docc.plugins.python.nodes:Type = docc.plugins.python.html:render_type
docc.plugins.references:Definition = docc.plugins.html:references_definition
docc.plugins.references:Reference = docc.plugins.html:references_reference
docc.plugins.verbatim:Highlight = docc.plugins.verbatim.html:render_highlight
docc.plugins.verbatim:Line = docc.plugins.verbatim.html:render_line
docc.plugins.verbatim:Text = docc.plugins.verbatim.html:render_text
docc.plugins.verbatim:Transcribed = docc.plugins.verbatim.html:render_transcribed
