Unified some code in the super/template reference system.
[jinja2.git] / docs / templates.rst
index f4f7348e72507b12347f4edf21dba967444c8c83..0b686865db60f04cc4736b13fd51f2395c3de39d 100644 (file)
@@ -346,7 +346,6 @@ If you want to print a block multiple times you can however use the special
     <h1>{{ self.title() }}</h1>
     {% block body %}{% endblock %}
 
-
 Unlike Python Jinja does not support multiple inheritance.  So you can only have
 one extends tag called per rendering.
 
@@ -615,6 +614,9 @@ are available on a macro object:
     This is `true` if the macro accesses the special `caller` variable and may
     be called from a :ref:`call<call>` tag.
 
+If a macro name starts with an underscore it's not exported and can't
+be imported.
+
 
 .. _call: