So I've now got this great timestamp inside a code snippet in VS Code.
Full snippet:
"Frontmatter":{
"prefix": "sqFront",
"body": [
"---",
"title: $1",
"permalink: $2",
"description: $3",
"date: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}Z",
"tags:",
"- $0",
"---"
]
}
How do I set the snippet to capture UTC time instead of my local time?