1``flush``
2=========
3
4.. versionadded:: 1.5
5    The flush tag was added in Twig 1.5.
6
7The ``flush`` tag tells Twig to flush the output buffer:
8
9.. code-block:: jinja
10
11    {% flush %}
12
13.. note::
14
15    Internally, Twig uses the PHP `flush`_ function.
16
17.. _`flush`: https://secure.php.net/flush
18