-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
82 changed files
with
129 additions
and
6,038 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Config options: https://github.com/rocker-org/devcontainer-templates/tree/main/src/r-ver | ||
{ | ||
"name": "R (rocker/r-ver base)", | ||
"image": "ghcr.io/rocker-org/devcontainer/r-ver:4.4", | ||
// Add software | ||
"features": { | ||
// Required to test with knitr | ||
// R package config: https://github.com/rocker-org/devcontainer-features/blob/main/src/r-rig/README.md | ||
"ghcr.io/rocker-org/devcontainer-features/r-rig:1": { | ||
"version": "none", | ||
"installRMarkdown": true, | ||
"installJupyterlab": true, | ||
"installRadian": true | ||
}, | ||
// You may wish to switch prerelease to latest for stable development | ||
// Quarto configuration : https://github.com/rocker-org/devcontainer-features/blob/main/src/quarto-cli/README.md | ||
"ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": { | ||
"installTinyTex": true, | ||
"version": "latest" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"r.rterm.linux": "/usr/local/bin/radian", | ||
"r.bracketedPaste": true, | ||
"r.plot.useHttpgd": true, | ||
"[r]": { | ||
"editor.wordSeparators": "`~!@#%$^&*()-=+[{]}\\|;:'\",<>/?" | ||
} | ||
}, | ||
// Enable a development set of extensions for Lua and Quarto | ||
"extensions": ["quarto.quarto", "sumneko.lua", "GitHub.copilot"] | ||
} | ||
} | ||
} |
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,44 @@ | ||
on: | ||
push: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: demo-website | ||
|
||
jobs: | ||
demo-website: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: quarto-website-${{ github.event_name != 'pull_request' || github.run_id }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/checkout@v4 | ||
|
||
# To render using knitr, we need a few more setup steps... | ||
# If we didn't want the examples to use `engine: knitr`, we could | ||
# skip a few of the setup steps. | ||
- name: "Setup R" | ||
uses: r-lib/actions/setup-r@v2 | ||
|
||
- name: "Setup R dependencies for Quarto's knitr engine" | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
packages: | ||
any::knitr | ||
any::rmarkdown | ||
any::downlit | ||
any::xml2 | ||
|
||
# Back to our regularly scheduled Quarto output | ||
- name: "Set up Quarto" | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: "Render and Publish" | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages |
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 |
---|---|---|
|
@@ -2,3 +2,7 @@ | |
.Rhistory | ||
.RData | ||
.Ruserdata | ||
*.html | ||
/.quarto/ | ||
*_files | ||
*_site |
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,21 @@ | ||
# AAGI Revealjs Extension For Quarto | ||
|
||
A [quarto extension](https://quarto.org/docs/extensions/) featuring an AAGI theme for the [reveal.js format](https://quarto.org/docs/presentations/revealjs/). | ||
|
||
<a href="http://quarto.thecoatlessprofessor.com/AAGIRevealjs"> | ||
<img width="1648" alt="Screenshot of the template at the current moment" src="https://github.com/user-attachments/assets/9da837c2-1a97-4d27-922a-b7746a87f42e"> | ||
</a> | ||
|
||
See the included [template.qmd](template.qmd) file for an example of the theme and integration into Quarto or explore the rendered version [here](http://quarto.thecoatlessprofessor.com/AAGIRevealjs/). | ||
|
||
## Installing | ||
|
||
You can obtain a copy of the extension by using: | ||
|
||
```bash | ||
quarto use template coatless-quarto/AAGIRevealjs | ||
``` | ||
|
||
This will install the extension and create an example qmd file that | ||
you can use as a starting place for your presentation slides. | ||
|
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,10 @@ | ||
title: aagi | ||
author: Adam H. Sparks | ||
version: 1.0.0 | ||
quarto-required: ">=1.4.0" | ||
contributes: | ||
formats: | ||
revealjs: | ||
css: aagi.css # consider using scss | ||
logo: logo.svg | ||
|
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
File renamed without changes
File renamed without changes
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,2 @@ | ||
project: | ||
type: default |
Oops, something went wrong.