Last active
January 25, 2024 01:32
-
-
Save mschmidty/b575b85c05302adf89e3e2b775865c93 to your computer and use it in GitHub Desktop.
VS code snippet for Quarto doc setup
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
"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