Skip to content

Commit 0661217

Browse files
committed
Add blank lines after code blocks
1 parent 3831694 commit 0661217

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/docsite/rst/porting_guides/porting_guide_core_2.19.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ Due to some string results previously parsing as lists, this mistake often went
9999
- debug:
100100
msg: "{{ ['test1', 'test2'] | replace('test', 'prod') }}"
101101

102+
102103
The result of this template becomes a string::
103104

104105
ok: [localhost] => {
@@ -113,6 +114,7 @@ This can be resolved by using the ``map`` filter to apply the ``replace`` filter
113114
- debug:
114115
msg: "{{ ['test1', 'test2'] | map('replace', 'test', 'prod') }}"
115116

117+
116118
The result of the corrected template remains a list::
117119

118120
ok: [localhost] => {

0 commit comments

Comments
 (0)