Fix block example line emphasis (#73238)

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2021-01-14 13:40:31 -06:00 committed by GitHub
parent 403a3b90b5
commit e9a1ff296e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ Rescue blocks specify tasks to run when an earlier task in a block fails. This a
.. _block_rescue: .. _block_rescue:
.. code-block:: YAML .. code-block:: YAML
:emphasize-lines: 3,10 :emphasize-lines: 3,14
:caption: Block error handling example :caption: Block error handling example
tasks: tasks:
@ -83,7 +83,7 @@ You can also add an ``always`` section to a block. Tasks in the ``always`` secti
.. _block_always: .. _block_always:
.. code-block:: YAML .. code-block:: YAML
:emphasize-lines: 2,9 :emphasize-lines: 2,13
:caption: Block with always section :caption: Block with always section
- name: Always do X - name: Always do X
@ -106,7 +106,7 @@ You can also add an ``always`` section to a block. Tasks in the ``always`` secti
Together, these elements offer complex error handling. Together, these elements offer complex error handling.
.. code-block:: YAML .. code-block:: YAML
:emphasize-lines: 2,9,16 :emphasize-lines: 2,13,24
:caption: Block with all sections :caption: Block with all sections
- name: Attempt and graceful roll back demo - name: Attempt and graceful roll back demo
@ -144,7 +144,7 @@ If an error occurs in the block and the rescue task succeeds, Ansible reverts th
You can use blocks with ``flush_handlers`` in a rescue task to ensure that all handlers run even if an error occurs: You can use blocks with ``flush_handlers`` in a rescue task to ensure that all handlers run even if an error occurs:
.. code-block:: YAML .. code-block:: YAML
:emphasize-lines: 6,10 :emphasize-lines: 3,12
:caption: Block run handlers in error handling :caption: Block run handlers in error handling
tasks: tasks: