-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π§βπ» Add .vscode/the.code-snippets
- Loading branch information
1 parent
9dbec8f
commit a99a9fd
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |