Skip to content

Instantly share code, notes, and snippets.

@mschmidty
Last active January 25, 2024 01:32
Show Gist options
  • Save mschmidty/b575b85c05302adf89e3e2b775865c93 to your computer and use it in GitHub Desktop.
Save mschmidty/b575b85c05302adf89e3e2b775865c93 to your computer and use it in GitHub Desktop.
VS code snippet for Quarto doc setup
"Header for .qmd" : {
"scope": "quarto, qmd",
"prefix": "qmdtomd",
"body" : [
"---",
"title: ${0}",
"date:",
"tags: [ ]",
"format:",
"\tcommonmark:",
"\t\tkeep-yaml: true",
"\t\tdf-print: tibble" ,
"execute:",
"\techo: true",
"\tmessage: false",
"\twarning: false",
"\tclass-output: 'r'",
"---"
],
"description": "Quarto qmd to md for blog posts."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment