├── .gitignore ├── LICENSE.md ├── README.md ├── _extensions └── quarto-ext │ └── fontawesome │ ├── _extension.yml │ ├── assets │ ├── css │ │ └── all.css │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ └── fontawesome.lua ├── _freeze ├── about │ └── execute-results │ │ └── html.json ├── materials │ ├── 01-simple-docs │ │ └── 01-single-docs │ │ │ └── execute-results │ │ │ └── html.json │ ├── 1-welcome-to-quarto │ │ ├── slides │ │ │ └── welcome-to-quarto │ │ │ │ ├── execute-results │ │ │ │ └── html.json │ │ │ │ └── libs │ │ │ │ ├── clipboard │ │ │ │ └── clipboard.min.js │ │ │ │ ├── quarto-html │ │ │ │ ├── popper.min.js │ │ │ │ ├── quarto-html.min.css │ │ │ │ ├── quarto-syntax-highlighting.css │ │ │ │ ├── tabby.min.js │ │ │ │ ├── tippy.css │ │ │ │ └── tippy.umd.min.js │ │ │ │ └── revealjs │ │ │ │ ├── dist │ │ │ │ ├── reset.css │ │ │ │ ├── reveal.css │ │ │ │ ├── reveal.esm.js │ │ │ │ ├── reveal.esm.js.map │ │ │ │ ├── reveal.js │ │ │ │ ├── reveal.js.map │ │ │ │ └── theme │ │ │ │ │ ├── fonts │ │ │ │ │ ├── league-gothic │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ │ └── league-gothic.woff │ │ │ │ │ └── source-sans-pro │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ │ └── source-sans-pro.css │ │ │ │ │ └── quarto.css │ │ │ │ └── plugin │ │ │ │ ├── highlight │ │ │ │ ├── highlight.esm.js │ │ │ │ ├── highlight.js │ │ │ │ ├── monokai.css │ │ │ │ ├── plugin.js │ │ │ │ └── zenburn.css │ │ │ │ ├── markdown │ │ │ │ ├── markdown.esm.js │ │ │ │ ├── markdown.js │ │ │ │ └── plugin.js │ │ │ │ ├── math │ │ │ │ ├── katex.js │ │ │ │ ├── math.esm.js │ │ │ │ ├── math.js │ │ │ │ ├── mathjax2.js │ │ │ │ ├── mathjax3.js │ │ │ │ └── plugin.js │ │ │ │ ├── notes │ │ │ │ ├── notes.esm.js │ │ │ │ ├── notes.js │ │ │ │ ├── plugin.js │ │ │ │ └── speaker-view.html │ │ │ │ ├── pdf-export │ │ │ │ ├── pdfexport.js │ │ │ │ └── plugin.yml │ │ │ │ ├── quarto-line-highlight │ │ │ │ ├── line-highlight.css │ │ │ │ ├── line-highlight.js │ │ │ │ └── plugin.yml │ │ │ │ ├── quarto-support │ │ │ │ ├── footer.css │ │ │ │ ├── plugin.yml │ │ │ │ └── support.js │ │ │ │ ├── reveal-menu │ │ │ │ ├── menu.css │ │ │ │ ├── menu.js │ │ │ │ ├── plugin.yml │ │ │ │ ├── quarto-menu.css │ │ │ │ └── quarto-menu.js │ │ │ │ ├── search │ │ │ │ ├── plugin.js │ │ │ │ ├── search.esm.js │ │ │ │ └── search.js │ │ │ │ └── zoom │ │ │ │ ├── plugin.js │ │ │ │ ├── zoom.esm.js │ │ │ │ └── zoom.js │ │ └── welcome-to-quarto │ │ │ └── execute-results │ │ │ └── html.json │ ├── 2-polishing-documents │ │ └── slides │ │ │ └── polishing-documents │ │ │ └── execute-results │ │ │ └── html.json │ ├── 3-computation │ │ ├── computation │ │ │ └── execute-results │ │ │ │ └── html.json │ │ └── slides │ │ │ └── computation │ │ │ ├── execute-results │ │ │ └── html.json │ │ │ ├── figure-revealjs │ │ │ ├── eg-1-1.png │ │ │ ├── fig-eg-1-1.png │ │ │ ├── fig-polar-1.png │ │ │ ├── gg-ex-1.png │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ └── unnamed-chunk-4-1.png │ │ │ └── libs │ │ │ ├── clipboard │ │ │ └── clipboard.min.js │ │ │ ├── quarto-html │ │ │ ├── popper.min.js │ │ │ ├── quarto-html.min.css │ │ │ ├── quarto-syntax-highlighting.css │ │ │ ├── tabby.min.js │ │ │ ├── tippy.css │ │ │ └── tippy.umd.min.js │ │ │ └── revealjs │ │ │ ├── dist │ │ │ ├── reset.css │ │ │ ├── reveal.css │ │ │ ├── reveal.esm.js │ │ │ ├── reveal.esm.js.map │ │ │ ├── reveal.js │ │ │ ├── reveal.js.map │ │ │ └── theme │ │ │ │ ├── fonts │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ │ └── quarto.css │ │ │ └── plugin │ │ │ ├── highlight │ │ │ ├── highlight.esm.js │ │ │ ├── highlight.js │ │ │ ├── monokai.css │ │ │ ├── plugin.js │ │ │ └── zenburn.css │ │ │ ├── markdown │ │ │ ├── markdown.esm.js │ │ │ ├── markdown.js │ │ │ └── plugin.js │ │ │ ├── math │ │ │ ├── katex.js │ │ │ ├── math.esm.js │ │ │ ├── math.js │ │ │ ├── mathjax2.js │ │ │ ├── mathjax3.js │ │ │ └── plugin.js │ │ │ ├── multiplex │ │ │ ├── multiplex.js │ │ │ ├── plugin.yml │ │ │ └── socket.io.js │ │ │ ├── notes │ │ │ ├── notes.esm.js │ │ │ ├── notes.js │ │ │ ├── plugin.js │ │ │ └── speaker-view.html │ │ │ ├── pdf-export │ │ │ ├── pdfexport.js │ │ │ └── plugin.yml │ │ │ ├── quarto-line-highlight │ │ │ ├── line-highlight.css │ │ │ ├── line-highlight.js │ │ │ └── plugin.yml │ │ │ ├── quarto-support │ │ │ ├── footer.css │ │ │ ├── plugin.yml │ │ │ └── support.js │ │ │ ├── reveal-menu │ │ │ ├── menu.css │ │ │ ├── menu.js │ │ │ ├── plugin.yml │ │ │ ├── quarto-menu.css │ │ │ └── quarto-menu.js │ │ │ ├── search │ │ │ ├── plugin.js │ │ │ ├── search.esm.js │ │ │ └── search.js │ │ │ └── zoom │ │ │ ├── plugin.js │ │ │ ├── zoom.esm.js │ │ │ └── zoom.js │ ├── 3-computations │ │ └── computations │ │ │ └── execute-results │ │ │ └── html.json │ └── index │ │ └── execute-results │ │ └── html.json └── site_libs │ ├── clipboard │ └── clipboard.min.js │ └── revealjs │ ├── dist │ ├── reset.css │ ├── reveal.css │ ├── reveal.esm.js │ ├── reveal.esm.js.map │ ├── reveal.js │ ├── reveal.js.map │ └── theme │ │ ├── fonts │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ │ └── quarto.css │ └── plugin │ ├── highlight │ ├── highlight.esm.js │ ├── highlight.js │ ├── monokai.css │ ├── plugin.js │ └── zenburn.css │ ├── markdown │ ├── markdown.esm.js │ ├── markdown.js │ └── plugin.js │ ├── math │ ├── katex.js │ ├── math.esm.js │ ├── math.js │ ├── mathjax2.js │ ├── mathjax3.js │ └── plugin.js │ ├── multiplex │ ├── multiplex.js │ ├── plugin.yml │ └── socket.io.js │ ├── notes │ ├── notes.esm.js │ ├── notes.js │ ├── plugin.js │ └── speaker-view.html │ ├── pdf-export │ ├── pdfexport.js │ └── plugin.yml │ ├── quarto-line-highlight │ ├── line-highlight.css │ ├── line-highlight.js │ └── plugin.yml │ ├── quarto-support │ ├── footer.css │ ├── plugin.yml │ └── support.js │ ├── reveal-menu │ ├── menu.css │ ├── menu.js │ ├── plugin.yml │ ├── quarto-menu.css │ └── quarto-menu.js │ ├── search │ ├── plugin.js │ ├── search.esm.js │ └── search.js │ └── zoom │ ├── plugin.js │ ├── zoom.esm.js │ └── zoom.js ├── _quarto.yml ├── about.qmd ├── custom.scss ├── images ├── grand-tour-small.png ├── seaplane-bg.png ├── seaplane.png └── sikorsky.pdf ├── index.css ├── index.qmd ├── materials ├── 1-welcome-to-quarto │ ├── exercises │ │ ├── demo.qmd │ │ ├── ex-1.qmd │ │ ├── ex-2-figs.png │ │ ├── ex-2-goal.html │ │ ├── ex-2-goal.pdf │ │ ├── ex-2-goal.qmd │ │ ├── ex-2-goal_files │ │ │ └── libs │ │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap-icons.css │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── clipboard │ │ │ │ └── clipboard.min.js │ │ │ │ └── quarto-html │ │ │ │ ├── anchor.min.js │ │ │ │ ├── popper.min.js │ │ │ │ ├── quarto-syntax-highlighting.css │ │ │ │ ├── quarto.js │ │ │ │ ├── tippy.css │ │ │ │ └── tippy.umd.min.js │ │ ├── ex-2.qmd │ │ └── sandbox.qmd │ ├── index.qmd │ └── slides │ │ ├── images │ │ ├── demo-html.png │ │ ├── demo-md.png │ │ ├── demo-pdf.png │ │ ├── demo.docx │ │ ├── demo.pdf │ │ ├── disassembled-rubix.jpg │ │ ├── edison-bulb.png │ │ ├── elephant-html.png │ │ ├── elephant-latex.png │ │ ├── elephant.png │ │ ├── ex-1-yaml.png │ │ ├── ex-2.qmd │ │ ├── gallery-books-r4ds.png │ │ ├── gallery-books-viz.png │ │ ├── gallery-doc-html.png │ │ ├── gallery-doc-pdf.png │ │ ├── gallery-pres-3.png │ │ ├── gallery-pres-4.png │ │ ├── gallery-web-nasa.png │ │ ├── gallery-web-quarto.png │ │ ├── github-discussion.png │ │ ├── large-rubiks-cube.png │ │ ├── med-rubiks-cube.png │ │ ├── pandoc-diagram.svg │ │ ├── pandoc-docs.png │ │ ├── pollev.png │ │ ├── quarto-workshop-1.jpg │ │ ├── quarto-workshop-2.jpg │ │ ├── quarto-workshop-3.jpg │ │ ├── quarto-workshop-4.jpg │ │ ├── quarto-workshop-5.jpg │ │ ├── quarto-workshop-6.jpg │ │ ├── render-icon.png │ │ ├── rmarkdown_wizards.png │ │ ├── rstudio-console.png │ │ ├── rstudio-terminal.png │ │ ├── rubiks-cube-patent.pdf │ │ ├── rubiks-patent.png │ │ ├── seaplane-headon.png │ │ ├── sticky.jpeg │ │ ├── terminal.png │ │ └── try-pandoc.png │ │ └── welcome-to-quarto.qmd ├── 2-polishing-documents │ ├── exercises │ │ ├── ex-3.qmd │ │ ├── ex-4.css │ │ ├── ex-4.qmd │ │ ├── images │ │ │ ├── circuit-mondo.png │ │ │ ├── circuit-small.png │ │ │ ├── circuit.png │ │ │ ├── dog-watch-mondo.png │ │ │ ├── dog-watch-small.png │ │ │ ├── dog-watch.png │ │ │ ├── watch-face-mondo.png │ │ │ ├── watch-face-small.png │ │ │ └── watch-face.png │ │ └── sandbox.qmd │ ├── index.qmd │ └── slides │ │ ├── images │ │ ├── bootswatch.png │ │ ├── callouts-doc.png │ │ ├── callouts-pdf.png │ │ ├── circuit.png │ │ ├── doc-layout.png │ │ ├── dog-watch-patent.pdf │ │ ├── dog-watch.png │ │ ├── margin-no.png │ │ ├── margin-yes.png │ │ ├── pandoc-convert-1.png │ │ ├── pandoc-convert-2.png │ │ ├── quarto-workshop-07.jpg │ │ ├── quarto-workshop-08.jpg │ │ ├── quarto-workshop-09.jpg │ │ ├── quarto-workshop-10.jpg │ │ ├── quarto-workshop-11.jpg │ │ ├── quarto-workshop-12.jpg │ │ ├── rubiks-patent.png │ │ ├── visual-attributes.png │ │ ├── visual-elements.png │ │ ├── visual-table.png │ │ ├── watch-face.png │ │ ├── yaml-intelligence.png │ │ ├── zen-1.png │ │ ├── zen-2.png │ │ └── zen-3.png │ │ └── polishing-documents.qmd ├── 3-computation │ ├── exercises │ │ ├── ex-5.qmd │ │ ├── ex-5_files │ │ │ └── figure-html │ │ │ │ └── unnamed-chunk-2-1.png │ │ └── sandbox.qmd │ ├── index.qmd │ └── slides │ │ ├── computation.qmd │ │ └── images │ │ ├── code-yaml-intelligence.png │ │ ├── paged-df.png │ │ ├── quarto-workshop-13.jpg │ │ ├── r-in-yaml.png │ │ └── shiny.png ├── 4-projects-and-publishing │ ├── exercises │ │ └── ex-1.qmd │ ├── index.qmd │ └── slides │ │ └── projects-and-publishing.qmd ├── 5-presentations │ ├── exercises │ │ └── ex-1.qmd │ ├── index.qmd │ └── slides │ │ └── presentations.qmd ├── 6-websites-and-books │ ├── exercises │ │ └── ex-1.qmd │ ├── index.qmd │ └── slides │ │ └── websites-and-books.qmd ├── 7-workshop │ ├── exercises │ │ └── ex-1.qmd │ ├── index.qmd │ └── slides │ │ └── workshop.qmd ├── 8-extending-quarto │ ├── exercises │ │ └── ex-1.qmd │ ├── index.qmd │ └── slides │ │ └── extending-quarto.qmd ├── index.qmd └── slides.scss └── workshop-conf-2022.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/_extension.yml -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/css/all.css -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/fontawesome.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_extensions/quarto-ext/fontawesome/fontawesome.lua -------------------------------------------------------------------------------- /_freeze/about/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/about/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/01-simple-docs/01-single-docs/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/01-simple-docs/01-single-docs/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/quarto-html.min.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */ 2 | -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/tabby.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/tabby.min.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/slides/welcome-to-quarto/libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /_freeze/materials/1-welcome-to-quarto/welcome-to-quarto/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/1-welcome-to-quarto/welcome-to-quarto/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/2-polishing-documents/slides/polishing-documents/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/2-polishing-documents/slides/polishing-documents/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/3-computation/computation/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/computation/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/eg-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/eg-1-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/fig-eg-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/fig-eg-1-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/fig-polar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/fig-polar-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/gg-ex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/gg-ex-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/figure-revealjs/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/figure-revealjs/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/quarto-html/quarto-html.min.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */ 2 | -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/quarto-html/tabby.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/quarto-html/tabby.min.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/multiplex/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/multiplex/multiplex.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/multiplex/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/multiplex/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/multiplex/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/multiplex/socket.io.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computation/slides/computation/libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /_freeze/materials/3-computations/computations/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/3-computations/computations/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/materials/index/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/materials/index/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/site_libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/multiplex/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/multiplex/multiplex.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/multiplex/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/multiplex/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/multiplex/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/multiplex/socket.io.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_freeze/site_libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/_quarto.yml -------------------------------------------------------------------------------- /about.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/about.qmd -------------------------------------------------------------------------------- /custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/custom.scss -------------------------------------------------------------------------------- /images/grand-tour-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/images/grand-tour-small.png -------------------------------------------------------------------------------- /images/seaplane-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/images/seaplane-bg.png -------------------------------------------------------------------------------- /images/seaplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/images/seaplane.png -------------------------------------------------------------------------------- /images/sikorsky.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/images/sikorsky.pdf -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/index.css -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/index.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/demo.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/demo.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-1.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-1.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-figs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-figs.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal.html -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal.pdf -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/anchor.min.js -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/quarto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/quarto.js -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2-goal_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/ex-2.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/ex-2.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/exercises/sandbox.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/exercises/sandbox.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/index.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/demo-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/demo-html.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/demo-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/demo-md.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/demo-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/demo-pdf.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/demo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/demo.docx -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/demo.pdf -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/disassembled-rubix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/disassembled-rubix.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/edison-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/edison-bulb.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/elephant-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/elephant-html.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/elephant-latex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/elephant-latex.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/elephant.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/ex-1-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/ex-1-yaml.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/ex-2.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/ex-2.qmd -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-books-r4ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-books-r4ds.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-books-viz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-books-viz.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-doc-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-doc-html.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-doc-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-doc-pdf.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-pres-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-pres-3.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-pres-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-pres-4.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-web-nasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-web-nasa.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/gallery-web-quarto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/gallery-web-quarto.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/github-discussion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/github-discussion.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/large-rubiks-cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/large-rubiks-cube.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/med-rubiks-cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/med-rubiks-cube.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/pandoc-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/pandoc-diagram.svg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/pandoc-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/pandoc-docs.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/pollev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/pollev.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/quarto-workshop-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/quarto-workshop-1.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/quarto-workshop-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/quarto-workshop-2.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/quarto-workshop-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/quarto-workshop-3.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/quarto-workshop-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/quarto-workshop-4.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/quarto-workshop-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/quarto-workshop-5.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/quarto-workshop-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/quarto-workshop-6.jpg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/render-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/render-icon.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/rmarkdown_wizards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/rmarkdown_wizards.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/rstudio-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/rstudio-console.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/rstudio-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/rstudio-terminal.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/rubiks-cube-patent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/rubiks-cube-patent.pdf -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/rubiks-patent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/rubiks-patent.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/seaplane-headon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/seaplane-headon.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/sticky.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/sticky.jpeg -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/terminal.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/images/try-pandoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/images/try-pandoc.png -------------------------------------------------------------------------------- /materials/1-welcome-to-quarto/slides/welcome-to-quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/1-welcome-to-quarto/slides/welcome-to-quarto.qmd -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/ex-3.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/ex-3.qmd -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/ex-4.css: -------------------------------------------------------------------------------- 1 | /* css styles */ 2 | 3 | -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/ex-4.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/ex-4.qmd -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/circuit-mondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/circuit-mondo.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/circuit-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/circuit-small.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/circuit.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/dog-watch-mondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/dog-watch-mondo.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/dog-watch-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/dog-watch-small.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/dog-watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/dog-watch.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/watch-face-mondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/watch-face-mondo.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/watch-face-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/watch-face-small.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/images/watch-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/images/watch-face.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/exercises/sandbox.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/exercises/sandbox.qmd -------------------------------------------------------------------------------- /materials/2-polishing-documents/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/index.qmd -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/bootswatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/bootswatch.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/callouts-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/callouts-doc.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/callouts-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/callouts-pdf.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/circuit.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/doc-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/doc-layout.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/dog-watch-patent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/dog-watch-patent.pdf -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/dog-watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/dog-watch.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/margin-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/margin-no.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/margin-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/margin-yes.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/pandoc-convert-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/pandoc-convert-1.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/pandoc-convert-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/pandoc-convert-2.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/quarto-workshop-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/quarto-workshop-07.jpg -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/quarto-workshop-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/quarto-workshop-08.jpg -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/quarto-workshop-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/quarto-workshop-09.jpg -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/quarto-workshop-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/quarto-workshop-10.jpg -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/quarto-workshop-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/quarto-workshop-11.jpg -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/quarto-workshop-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/quarto-workshop-12.jpg -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/rubiks-patent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/rubiks-patent.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/visual-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/visual-attributes.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/visual-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/visual-elements.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/visual-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/visual-table.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/watch-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/watch-face.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/yaml-intelligence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/yaml-intelligence.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/zen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/zen-1.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/zen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/zen-2.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/images/zen-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/images/zen-3.png -------------------------------------------------------------------------------- /materials/2-polishing-documents/slides/polishing-documents.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/2-polishing-documents/slides/polishing-documents.qmd -------------------------------------------------------------------------------- /materials/3-computation/exercises/ex-5.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/exercises/ex-5.qmd -------------------------------------------------------------------------------- /materials/3-computation/exercises/ex-5_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/exercises/ex-5_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /materials/3-computation/exercises/sandbox.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/exercises/sandbox.qmd -------------------------------------------------------------------------------- /materials/3-computation/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/index.qmd -------------------------------------------------------------------------------- /materials/3-computation/slides/computation.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/slides/computation.qmd -------------------------------------------------------------------------------- /materials/3-computation/slides/images/code-yaml-intelligence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/slides/images/code-yaml-intelligence.png -------------------------------------------------------------------------------- /materials/3-computation/slides/images/paged-df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/slides/images/paged-df.png -------------------------------------------------------------------------------- /materials/3-computation/slides/images/quarto-workshop-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/slides/images/quarto-workshop-13.jpg -------------------------------------------------------------------------------- /materials/3-computation/slides/images/r-in-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/slides/images/r-in-yaml.png -------------------------------------------------------------------------------- /materials/3-computation/slides/images/shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/3-computation/slides/images/shiny.png -------------------------------------------------------------------------------- /materials/4-projects-and-publishing/exercises/ex-1.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ex-1" 3 | format: html 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /materials/4-projects-and-publishing/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/4-projects-and-publishing/index.qmd -------------------------------------------------------------------------------- /materials/4-projects-and-publishing/slides/projects-and-publishing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/4-projects-and-publishing/slides/projects-and-publishing.qmd -------------------------------------------------------------------------------- /materials/5-presentations/exercises/ex-1.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ex-1" 3 | format: html 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /materials/5-presentations/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/5-presentations/index.qmd -------------------------------------------------------------------------------- /materials/5-presentations/slides/presentations.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/5-presentations/slides/presentations.qmd -------------------------------------------------------------------------------- /materials/6-websites-and-books/exercises/ex-1.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ex-1" 3 | format: html 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /materials/6-websites-and-books/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/6-websites-and-books/index.qmd -------------------------------------------------------------------------------- /materials/6-websites-and-books/slides/websites-and-books.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/6-websites-and-books/slides/websites-and-books.qmd -------------------------------------------------------------------------------- /materials/7-workshop/exercises/ex-1.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ex-1" 3 | format: html 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /materials/7-workshop/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/7-workshop/index.qmd -------------------------------------------------------------------------------- /materials/7-workshop/slides/workshop.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/7-workshop/slides/workshop.qmd -------------------------------------------------------------------------------- /materials/8-extending-quarto/exercises/ex-1.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ex-1" 3 | format: html 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /materials/8-extending-quarto/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/8-extending-quarto/index.qmd -------------------------------------------------------------------------------- /materials/8-extending-quarto/slides/extending-quarto.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/8-extending-quarto/slides/extending-quarto.qmd -------------------------------------------------------------------------------- /materials/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/index.qmd -------------------------------------------------------------------------------- /materials/slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/materials/slides.scss -------------------------------------------------------------------------------- /workshop-conf-2022.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2022/rmd-to-quarto/HEAD/workshop-conf-2022.Rproj --------------------------------------------------------------------------------