Fix version_added for new option in template introduced in #21846 (#24307)

pull/20333/head
Matt Martz 7 years ago committed by GitHub
parent 2c58ac1833
commit 63f8e6b68a

@ -58,32 +58,32 @@ options:
- Specify the newline sequence to use for templating files. - Specify the newline sequence to use for templating files.
choices: [ '\n', '\r', '\r\n' ] choices: [ '\n', '\r', '\r\n' ]
default: '\n' default: '\n'
version_added: '2.3' version_added: '2.4'
block_start_string: block_start_string:
description: description:
- The string marking the beginning of a block. - The string marking the beginning of a block.
default: '{%' default: '{%'
version_added: '2.3' version_added: '2.4'
block_end_string: block_end_string:
description: description:
- The string marking the end of a block. - The string marking the end of a block.
default: '%}' default: '%}'
version_added: '2.3' version_added: '2.4'
variable_start_string: variable_start_string:
description: description:
- The string marking the beginning of a print statement. - The string marking the beginning of a print statement.
default: '{{' default: '{{'
version_added: '2.3' version_added: '2.4'
variable_end_string: variable_end_string:
description: description:
- The string marking the end of a print statement. - The string marking the end of a print statement.
default: '}}' default: '}}'
version_added: '2.3' version_added: '2.4'
trim_blocks: trim_blocks:
description: description:
- If this is set to True the first newline after a block is removed (block, not variable tag!). - If this is set to True the first newline after a block is removed (block, not variable tag!).
default: "no" default: "no"
version_added: '2.3' version_added: '2.4'
force: force:
description: description:
- the default is C(yes), which will replace the remote file when contents - the default is C(yes), which will replace the remote file when contents

Loading…
Cancel
Save