Action @ENDCUT

Marks the end of content that must be cut by the @CUT action.

Every @CUT needs a corresponding @ENDCUT.

Usage

<# @CUT("name") #>

Parameters

name

(Required) The name to use to refer to this copied content with @PASTE. Must be a text (with quotes \"). Cannot be a variable.

Examples

Example Result

<# @CUT(“example”) #>
Some text here
One more line
<# @ENDCUT #>
But then!
<# @PASTE(“example”) #>

But then!
Some text here
One more line

More information

See the @CUT action for more details.

See also