Created
February 5, 2025 04:38
-
-
Save jshwlkr/f324dd2966601453f5183d780b99b990 to your computer and use it in GitHub Desktop.
11ty frontmatter snippet for vscode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "post frontmatter": { | |
| "prefix": "fm", | |
| "body": [ | |
| "---", | |
| "title: $1", | |
| "date: $CURRENT_YEAR-$CURRENT_MONTH-${CURRENT_DATE}T$CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND$CURRENT_TIMEZONE_OFFSET", | |
| "id: $UUID", | |
| "tags:", | |
| " - $2", | |
| "---", | |
| "$0" | |
| ], | |
| "description": "Post frontmatter" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment