Skip to content

Instantly share code, notes, and snippets.

@soh-i
Created February 8, 2022 06:52
Show Gist options
  • Save soh-i/dac169dae23c5089318d8caa08b91dc2 to your computer and use it in GitHub Desktop.
Save soh-i/dac169dae23c5089318d8caa08b91dc2 to your computer and use it in GitHub Desktop.
Knit initialized snippet for VScode
{
"init_knit": {
"prefix": "init_knit",
"body": [
"---",
"title: $1",
"author: \"Soh Ishiguro\"",
"date: \"`r Sys.Date()`\"",
"output:",
" html_document: ",
" toc: yes",
" toc_float: yes",
" toc_depth: 3",
" toc_collapsed: FALSE",
" number_sections: yes",
" keep_md: yes",
" fig_caption: yes",
" pdf_document: default",
"---",
""
],
"description": ""
},
}
@soh-i
Copy link
Author

soh-i commented Feb 8, 2022

it generates the following when type init

---
title: 
author: "Soh Ishiguro"
date: "`r Sys.Date()`"
output:
  html_document: 
    toc: yes
    toc_float: yes
    toc_depth: 3
    toc_collapsed: FALSE
    number_sections: yes
    keep_md: yes
    fig_caption: yes
  pdf_document: default
---

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment