Skip to content

Commit 8ee7622

Browse files
committed
Normalize code block type.
1 parent f5b3b38 commit 8ee7622

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/docsite/rst/dev_guide/migrating_roles.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ You will need to use the Fully Qualified Collection Name (FQCN) to use the roles
7171

7272
So for example, in the above collection, the FQCN to access ``role1`` would be:
7373

74-
.. code-block:: Python
74+
.. code-block:: python
7575
7676
mynamespace.mycollection.role1
7777

docs/docsite/rst/dev_guide/style_guide/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ Ensure all icons, images, diagrams, and non text elements have a meaningful alte
387387

388388
To add alt text in rst:
389389

390-
.. code-block:: reStructuredText
390+
.. code-block:: rst
391391
392392
.. image:: path/networkdiag.png
393393
:width: 400
@@ -416,7 +416,7 @@ Label tables with a descriptive title.
416416

417417
For RST:
418418

419-
.. code-block:: reStructuredText
419+
.. code-block:: rst
420420
421421
.. table:: File descriptions
422422

docs/docsite/rst/reference_appendices/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ Until the jinja2 2.10 release, Jinja was only able to return strings, but Ansibl
884884

885885
The following example of a single templating action shows this behavior:
886886

887-
.. code-block:: Jinja
887+
.. code-block:: jinja
888888
889889
{{ 'ansible' | regex_search('foobar') }}
890890
@@ -896,7 +896,7 @@ The native jinja2 functionality actually allows us to return full Python objects
896896

897897
Native jinja2 functionality is not needed when ``regex_search`` is used as an intermediate result that is then compared to the jinja2 ``none`` test.
898898

899-
.. code-block:: Jinja
899+
.. code-block:: jinja
900900
901901
{{ 'ansible' | regex_search('foobar') is none }}
902902

0 commit comments

Comments
 (0)