Skip to content

Commit

Permalink
Tidy placement of admonition (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
MetRonnie authored Feb 20, 2025
1 parent 347efa1 commit 51433c0
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions src/user-guide/writing-workflows/parameterized-tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,25 +112,23 @@ Any number of parameters can be used at once. This parameterization:
model<run,obs> # for run = 1..2 and obs = ship, buoy, plane
model<run><obs> # Alternatively, from Cylc 8.2.0
.. versionadded:: 8.2.0

From this version you can also use the equivalent ``model<run><obs>``
syntax. This allows more flexibility in templating: You can now construct
names like ``beginning<run>middle<obs>end``.

.. note::

Before Cylc 8.2.0 this syntax worked in many cases, but was
not formally supported, and failed if used in the names of
:ref:`families<families_and_parameters>`.

expands to these tasks names:

.. code-block:: none
model_run1_ship, model_run1_buoy, model_run1_plane,
model_run2_ship, model_run2_buoy, model_run2_plane
.. note::

The ``model<run><obs>`` syntax was introduced in Cylc 8.2.0.
This allows more flexibility in templating; you can now construct
names like ``beginning<run>middle<obs>end``.
Before Cylc 8.2.0 this syntax worked in many cases, but was
not formally supported, and failed if used in the names of
:ref:`families<families_and_parameters>`.


Here's a simple but complete example workflow:

.. code-block:: cylc
Expand Down

0 comments on commit 51433c0

Please sign in to comment.