escapeseq
An "escape" filter for sequences. Mark each element in the sequence, individually, as a string that should be auto-escaped. Return a list with the results.
def escapeseq(
value: iterable
) - > list
An "escape" filter for sequences. Mark each element in the sequence, individually, as a string that should be auto-escaped. Return a list with the results.
Parameters
| Name | Type | Description |
|---|---|---|
| value | iterable | A sequence of objects or strings to be individually escaped |
Returns
| Type | Description |
|---|---|
list | A list of strings where each element has been processed for auto-escaping |