Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» Add .vscode/the.code-snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
arv-anshul committed Mar 24, 2024
1 parent 9dbec8f commit a99a9fd
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .vscode/the.code-snippets
Original file line number Diff line number Diff line change
@@ -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": ["<div class=\"grid cards\" markdown>", "$0", "</div>"],
"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"
}
}

0 comments on commit a99a9fd

Please sign in to comment.