The stringify-helper will convert the referenced object to a JSON string. If a cyclical object is used the helper will return [Cyclical] for the nested instances to prevent infinite recursion.

  {{{stringify complexObject}}}

when used with this context:

{
  complexObject: {
    "this": "is",
    "a": "complex",
    "object": "with",
    "lots": "of",
    "things": "in",
    "it": "!"
  }
}

will result in:

{
  complexObject: {
    "this": "is",
    "a": "complex",
    "object": "with",
    "lots": "of",
    "things": "in",
    "it": "!"
  }
}