removed the notice about names in imported macros. that's documented as part of the...
authorArmin Ronacher <armin.ronacher@active-4.com>
Thu, 15 May 2008 12:48:31 +0000 (14:48 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Thu, 15 May 2008 12:48:31 +0000 (14:48 +0200)
--HG--
branch : trunk

docs/templates.rst

index 4270b9dfc6b2a7243c1ae5423eb625cc18799605..3adf98a702818d01ec330da95be75781bf13d6fb 100644 (file)
@@ -509,13 +509,6 @@ Macros are comparable with functions in regular programming languages.  They
 are useful to put often used idioms into reusable functions to not repeat
 yourself.
 
-Macros can be defined in helper templates which then are :ref:`imported
-<import>` or directly in the template where they are used.  There is one big
-difference between those two possibilities.  A macro that is defined in the
-template where it's also used has access to the context passed to the template.
-A macro defined in another template and then imported can only access variables
-defined there or in the global context.
-
 Here a small example of a macro that renders a form element::
 
     {% macro input(name, value='', type='text', size=20) -%}