summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Merickel <michael@digitalartefacts.com>2013-10-19 03:48:01 -0500
committerMichael Merickel <michael@digitalartefacts.com>2013-10-19 03:48:01 -0500
commit777112d521e337fefc2e0c217add7ac283d087b3 (patch)
tree813404587931ceb91bfe9e25032e199c077ed18f /docs
parentb04ae5ac814266eb77d4a09c749e5e0394a11a1c (diff)
downloadpyramid-777112d521e337fefc2e0c217add7ac283d087b3.tar.gz
pyramid-777112d521e337fefc2e0c217add7ac283d087b3.tar.bz2
pyramid-777112d521e337fefc2e0c217add7ac283d087b3.zip
link to the public renderer interfaces
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/renderers.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index 740c81555..4f8c4bf77 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -480,8 +480,11 @@ Adding a New Renderer
You may add a new renderer by creating and registering a :term:`renderer
factory`.
-A renderer factory implementation is typically a class with the
-following interface:
+A renderer factory implementation should conform to the
+:class:`pyramid.interfaces.IRendererFactory` interface. It should be capable
+of creating an object that conforms to the
+:class:`pyramid.interfaces.IRenderer` interface. A typical class that follows
+this setup is as follows:
.. code-block:: python
:linenos: