chore: frontmatter snippet

This commit is contained in:
Cory Dransfeldt 2024-01-13 09:21:52 -08:00
parent 5bae97ccb5
commit ae937c7ab3
No known key found for this signature in database

17
.vscode/frontmatter.code-snippets vendored Normal file
View file

@ -0,0 +1,17 @@
{
"add post frontmatter": {
"prefix": "frontmatter",
"scope": "plaintext,markdown,html",
"body": [
"---",
"date: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE",
"title: $TM_FILENAME_BASE"
"draft": false,
"description: ''",
"tags: ['']",
"---",
"$2"
],
"description": "Add frontmatter for new post"
},
}