diff --git a/.vscode/frontmatter.code-snippets b/.vscode/frontmatter.code-snippets new file mode 100644 index 00000000..46b51600 --- /dev/null +++ b/.vscode/frontmatter.code-snippets @@ -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" + }, +} \ No newline at end of file