-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup separate site & repository markdown profiles | fix for gfm site…
… output quarto issue
- Loading branch information
1 parent
b386d1b
commit 407d263
Showing
39 changed files
with
6,975 additions
and
42 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
format: | ||
html: | ||
code-fold: false | ||
--- | ||
|
||
# Quarto Site Environment Setup | ||
|
||
Here's all the setup. | ||
|
||
## Quarto | ||
|
||
Setup [quarto-shims](https://github.com/prncevince/quarto-shims). | ||
|
||
Then, run below to install & setup quarto. `wget` is required in your shell environment, can be installed on Mac via homebrew. | ||
|
||
```sh | ||
./utils/download-quarto.sh | ||
``` | ||
|
||
## R | ||
|
||
Setup [r-shims](https://github.com/prncevince/r-shims). | ||
|
||
Create RStudio project within RStudio. | ||
|
||
```{r} | ||
#| eval: false | ||
rstudioapi::initializeProject() | ||
``` | ||
|
||
Initialize the `{renv}` environment. Important packages can be discovered in [utils/deps.R](utils/deps.R). | ||
|
||
```{r} | ||
#| eval: false | ||
renv::init() | ||
``` | ||
|
||
## Start | ||
|
||
Explode on paper. | ||
|
||
## Fin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
project: | ||
render: | ||
- SETUP.qmd | ||
format: | ||
gfm: | ||
preview-mode: raw |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
project: | ||
type: website | ||
output-dir: _site | ||
execute-dir: project | ||
post-render: | ||
- touch _site/.nojekyll | ||
website: | ||
title: prncevince | ||
site-url: https://prncevince.github.io/ | ||
description: '' | ||
repo-branch: main | ||
repo-url: https://github.com/prncevince/prncevince.github.io | ||
page-navigation: true | ||
navbar: | ||
right: | ||
- text: About | ||
href: about/index.qmd | ||
- icon: github | ||
href: https://github.com/prncevince | ||
- icon: twitter | ||
href: https://twitter.com/prncevincecares | ||
format: | ||
html: | ||
code-fold: true | ||
code-link: true | ||
css: assets/css/style.css | ||
grid: | ||
body-width: 1100px | ||
sidebar-width: 300px | ||
margin-width: 300px | ||
gutter-width: 1.5rem | ||
theme: | ||
light: [flatly] | ||
dark: [darkly] | ||
toc: true | ||
toc-depth: 6 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,2 @@ | ||
project: | ||
type: website | ||
output-dir: _site | ||
execute-dir: project | ||
post-render: | ||
- touch _site/.nojekyll | ||
execute: | ||
freeze: auto | ||
website: | ||
title: prncevince | ||
author: Vincent Clemson | ||
repo-url: https://github.com/prncevince/prncevince.github.io | ||
navbar: | ||
right: | ||
- about.qmd | ||
- icon: github | ||
href: https://github.com/prncevince | ||
- icon: twitter | ||
href: https://twitter.com/prncevincecares | ||
format: | ||
html: | ||
code-fold: true | ||
code-link: true | ||
css: assets/css/style.css | ||
grid: | ||
body-width: 1100px | ||
sidebar-width: 300px | ||
margin-width: 300px | ||
gutter-width: 1.5rem | ||
toc: true | ||
toc-depth: 6 | ||
|
||
freeze: auto |
Empty file.
Oops, something went wrong.