This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/.vscode/frontmatter.code-snippets

17 lines
No EOL
344 B
Text

{
"add post frontmatter": {
"prefix": "frontmatter",
"scope": "plaintext,markdown,html",
"body": [
"---",
"date: '$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE'",
"title: '$TM_FILENAME_BASE'",
"description: ''",
"tags: ['']",
"---",
"<!-- excerpt -->",
"$2"
],
"description": "Add frontmatter for new post"
},
}