Skip to content

Instantly share code, notes, and snippets.

@brettmillerb
Created September 6, 2021 13:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brettmillerb/8bace0280e6d4f44a8d986b6ab6f27d1 to your computer and use it in GitHub Desktop.
Save brettmillerb/8bace0280e6d4f44a8d986b6ab6f27d1 to your computer and use it in GitHub Desktop.
Jekyll Blog Post VSCode Snippet
{
// Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Front Matter": {
"prefix": "New-BlogPost",
"body": [
"---\r",
"title: ${1:Post-Title}\r",
"summary: ${2:Post-Summary}\r",
"\r",
"excerpt_separator: <!--more-->",
"\r",
"tags:",
"\t- ${3:tag1}\r",
"\t- ${4:tag2}\r",
"\t- ${5:tag3}\r",
"---",
"\r",
"### ${6:Introduction}\r",
"\r",
"### Middle\r",
"\r",
"### Conclusion\r",
"\r"
],
"description": "Front Matter Blog Post Template"
},
"code Snippet": {
"prefix": "```",
"body": [
"```${powershell}",
"$0",
"```"
],
"description": "Quickly define a fenced code block"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment