fixed linking in jinja docs for the intro
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 26 May 2008 11:59:26 +0000 (13:59 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 26 May 2008 11:59:26 +0000 (13:59 +0200)
--HG--
branch : trunk

docs/intro.rst

index abb88535ca104f52b61177944e05b8df938dc0ae..50ad8ab11810b1319409b1e8268d5f40e794a3c0 100644 (file)
@@ -95,20 +95,21 @@ snapshot::
 Basic API Usage
 ---------------
 
-This section gives you a brief introduction to the Python API for Jinja2 templates.
+This section gives you a brief introduction to the Python API for Jinja2
+templates.
 
 The most basic way to create a template and render it is through
-:class:`Template`.  This however is not the recommended way to work with it if
-your templates are not loaded from strings but the file system or another data
-source:
+:class:`~jinja2.Template`.  This however is not the recommended way to
+work with it if your templates are not loaded from strings but the file
+system or another data source:
 
 >>> from jinja2 import Template
 >>> template = Template('Hello {{ name }}!')
 >>> template.render(name='John Doe')
 u'Hello John Doe!'
 
-By creating an instance of :class:`Template` you get back a new template
-object that provides a method called :meth:`~Template.render` which when
+By creating an instance of :class:`~jinja2.Template` you get back a new template
+object that provides a method called :meth:`~jinja2.Template.render` which when
 called with a dict or keyword arguments expands the template.  The dict
 or keywords arguments passed to the template are the so-called "context"
 of the template.