Returns the number of milliseconds between 1970/1/1 and a given date.
1
{{event.timestamp | timestamp}}
Copied!
timestamp_sec
Returns the number of seconds between 1970/1/1 and a given date.
1
{{event.timestamp_sec | timestamp}}
Copied!
escape
Escapes a value to be a valid JSON string.
1
{{event.user.name | escape}}
Copied!
html2text
Converts a HTML string to plain text.
1
{{event.data.body.iv | html2text}}
Copied!
markdown2text
Converts a markdown string to plain text.
1
{{event.data.body.iv | html2text}}
Copied!
md5
Calculate the MD5 hash from a given string. Use this method for hashing passwords, when backwards compatibility is important
1
{{event.data.password.iv | md5}}
Copied!
sha256
Calculate the SHA256 hash from a given string. Use this method for hashing passwords.
1
{{event.data.password.iv | sha256}}
Copied!
slugify
Calculates the slug of a text by removing all special characters and whitespaces to create a friendly term that can be used for SEO-friendly URLs.
1
{{event.data.title.iv | slugify}}
Copied!
trim
Same as strip. Removes all whitespace (tabs, spaces, and newlines) from both the left and right sides of a string. It does not affect spaces between words.