☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

end

Table of contents

Description:

This key defines the end token for array boundaries when parsing snippet parameters.

The value is a string that specifies the token that marks the end of an array in snippet parameter parsing. This works together with array_boundary.start to define paired tokens that enclose arrays.

Appears in:
└── Snippet Format
    └── array_boundary
        └── end
Type:
string
Default value:
Examples:

In this example, we have configured array boundaries to use square brackets.

Copied to clipboard
_snippets:
  example:
    snippet: <<example [[param]]>>
    params:
      param:
        parser: argument
        options:
          format:
            array_boundary:
              start: '['
              end: ']'
{
  "_snippets": {
    "example": {
      "snippet": "<<example [[param]]>>",
      "params": {
        "param": {
          "parser": "argument",
          "options": {
            "format": {
              "array_boundary": {
                "start": "[",
                "end": "]"
              }
            }
          }
        }
      }
    }
  }
}
Open in a new tab