File: header_levels.rst

package info (click to toggle)
python-sphinx-jinja 2.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: python: 198; sh: 6; makefile: 3
file content (36 lines) | stat: -rw-r--r-- 860 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Header level tests
==================

First, render without the ``header_update_levels`` option:

.. jinja::

   same style, but second level
   ============================

   Above header is a second-level header, since all headers will be in levels
   below the active level header of the caller.

   ************************
   New style is third level
   ************************

   A new style will go to an even lower level.

Next, try to render with the ``header_update_levels`` option:

.. jinja::
   :header_update_levels:

   same style, same level
   ======================

   Because of the ``header_update_levels`` option, the same header style means
   the same header level (like with the ``include`` directive).

   ************
   Second level
   ************

   A level two section (because this is the first time this style occcurs).