Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tidy placement of admonition #802

Merged
merged 1 commit into from
Feb 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading