Skip to content

Instantly share code, notes, and snippets.

@kyleGrealis
Last active October 25, 2024 14:04
Show Gist options
  • Save kyleGrealis/693e5d0df41576247900c3bef788d475 to your computer and use it in GitHub Desktop.
Save kyleGrealis/693e5d0df41576247900c3bef788d475 to your computer and use it in GitHub Desktop.
Quarto header template
---
title: Your Title Here
author:
name: "First Last"
url: https://github.com/ # add your GitHub username
email: [email protected]
orcid: "0000-0000-0000-0000" # add your ORCID
roles: "aut"
affiliations: "your company"
abstract: ""
keywords: datascience, R
number-sections: false
format:
html:
embed-resources: true
theme:
- default
- custom.scss
toc: true
toc-title: "Table of Contents"
toc-location: left
code-tools: true
code-copy: true
code-fold: true
code-summary: "Show code"
page-layout: full
grid:
margin-width: 0px
editor: source
---
<!-- create a horizontal line to separate the header from the content -->
---
## Section 1
Content...
```{r}
# some code
```
---
## Section 2
More content...
---
@kyleGrealis
Copy link
Author

added embed-resources: true to YAML

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