manual formatting

This commit is contained in:
Kovid Goyal 2020-12-24 09:58:26 +05:30
parent dfc888ef47
commit 1e123e35cf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -401,7 +401,7 @@ An ``if`` produces a value like any other language expression. This means that a
* ``program: a = if field('series') then 'foo' else 'bar' fi; a``
* ``program: a = field(if field('series') then 'series' else 'title' fi); a``
The template language supports **``for`` expressions** with the following syntax:
The template language supports **``for`` expressions** with the following syntax::
for <<id>> in <<expression>>:
<<expression_list>>
@ -413,7 +413,7 @@ individual values. Each resulting value in the list is assigned to the variable
is evaluated.
Example: This template removes the first hierarchical name for each value in Genre (``#genre``), constructing a list with
the new names.
the new names::
program:
new_tags = '';