Generates a GUID.
Input
{% guid %}
Output
e7edd91e41d34858b995c55dd1ed56d0
Specifying a format
guid
supports an optional format parameter. Available formats are n
(digits), d
(hyphens), b
(braces) and p
(parentheses).
Digits
Input
{% guid n %}
Output
e7edd91e41d34858b995c55dd1ed56d0
Braces
Input
{% guid b %}
Output
{e7edd91e-41d3-4858-b995-c55dd1ed56d0}
Hyphens
Input
{% guid d %}
Output
e7edd91e-41d3-4858-b995-c55dd1ed56d0
Parentheses
Input
{% guid p %}
Output
(e7edd91e-41d3-4858-b995-c55dd1ed56d0)