Autosummary test

sphinx.application.Sphinx(srcdir, confdir, ...)
class sphinx.application.TemplateBridge

This class defines the interface for a “template bridge”, that is, a class that renders templates given a template name and a context.

Basic test

render(template, context) Called by the builder to render a template given as a filename with a specified context (a Python dictionary).
render_string(template, context) Called by the builder to render a template given as a string with a specified context (a Python dictionary).

Test with tildes

render(template, context) Called by the builder to render a template given as a filename with a specified context (a Python dictionary).
render_string(template, context) Called by the builder to render a template given as a string with a specified context (a Python dictionary).

Methods:

render(template, context)

Called by the builder to render a template given as a filename with a specified context (a Python dictionary).

render_string(template, context)

Called by the builder to render a template given as a string with a specified context (a Python dictionary).