diff --git a/.vscode/the.code-snippets b/.vscode/the.code-snippets new file mode 100644 index 0000000..a7258a8 --- /dev/null +++ b/.vscode/the.code-snippets @@ -0,0 +1,46 @@ +{ + "Blogs Frontmatter": { + "body": [ + "---", + "date:", + " created: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE", + " updated: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE", + "authors:", + " - arv-anshul", + "categories:", + " - ", + "description:", + "title: ${TM_FILENAME_BASE/(.*)/${1:/capitalize}/}", + "slug: $TM_FILENAME_BASE", + "---", + "", + "# :tada:{ title=\"$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE\" } ${TM_FILENAME_BASE/[-_]/ /g}", + "" + ], + "description": "Frontmatter section for Blogs.", + "prefix": "blog-frm", + "scope": "markdown" + }, + "Grid Cards": { + "body": ["
", "$0", "
"], + "description": [ + "Grid Cards template of mkdocs.", + "See documentaion: https://squidfunk.github.io/mkdocs-material/reference/grids/" + ], + "prefix": "grid-cards", + "scope": "markdown" + }, + "Projects Frontmatter": { + "body": [ + "---", + "date: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE", + "title: ${TM_FILENAME_BASE/(.*)/${1:/capitalize}/}", + "slug: $TM_FILENAME_BASE", + "icon: simple/python", + "---" + ], + "description": "Frontmatter section for Projects.", + "prefix": "project-frm", + "scope": "markdown" + } +}