├── .gitignore ├── .quartoignore ├── README.md ├── _extensions └── positconfslides │ ├── .DS_Store │ ├── _extension.yml │ ├── assets │ ├── .DS_Store │ ├── backgrounds │ │ ├── .DS_Store │ │ ├── 30-70-dark.svg │ │ ├── 30-70-light.svg │ │ ├── 30-70-white.svg │ │ ├── brackets-dark.svg │ │ ├── brackets-light.svg │ │ ├── content-dark.svg │ │ ├── content-light.svg │ │ ├── content2-light.svg │ │ ├── toc-dark.svg │ │ ├── toc-light.svg │ │ ├── toc-people-dark.svg │ │ ├── toc-people-light.svg │ │ ├── toc2-dark.svg │ │ └── toc2-light.svg │ └── posit-slides.js │ ├── custom.scss │ └── positconfslides.lua ├── _publish.yml ├── positconfslides.Rproj ├── template.html ├── template.qmd └── template_files └── libs ├── clipboard └── clipboard.min.js ├── quarto-contrib └── posit_slides │ └── posit-slides.js ├── quarto-html ├── light-border.css ├── 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-chalkboard ├── README.md ├── font-awesome │ ├── LICENSE.txt │ ├── css │ │ ├── all.css │ │ ├── brands.css │ │ ├── fontawesome.css │ │ ├── regular.css │ │ ├── solid.css │ │ ├── svg-with-js.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── img │ ├── blackboard.png │ ├── boardmarker-black.png │ ├── boardmarker-blue.png │ ├── boardmarker-green.png │ ├── boardmarker-orange.png │ ├── boardmarker-purple.png │ ├── boardmarker-red.png │ ├── boardmarker-yellow.png │ ├── chalk-blue.png │ ├── chalk-green.png │ ├── chalk-orange.png │ ├── chalk-purple.png │ ├── chalk-red.png │ ├── chalk-white.png │ ├── chalk-yellow.png │ ├── sponge.png │ └── whiteboard.png ├── plugin.js ├── plugin.yml └── style.css ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/.gitignore -------------------------------------------------------------------------------- /.quartoignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/.quartoignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/positconfslides/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/.DS_Store -------------------------------------------------------------------------------- /_extensions/positconfslides/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/_extension.yml -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/.DS_Store -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/.DS_Store -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/30-70-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/30-70-dark.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/30-70-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/30-70-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/30-70-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/30-70-white.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/brackets-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/brackets-dark.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/brackets-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/brackets-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/content-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/content-dark.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/content-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/content-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/content2-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/content2-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/toc-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/toc-dark.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/toc-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/toc-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/toc-people-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/toc-people-dark.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/toc-people-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/toc-people-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/toc2-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/toc2-dark.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/backgrounds/toc2-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/assets/backgrounds/toc2-light.svg -------------------------------------------------------------------------------- /_extensions/positconfslides/assets/posit-slides.js: -------------------------------------------------------------------------------- 1 | // the world's your oyster -------------------------------------------------------------------------------- /_extensions/positconfslides/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/custom.scss -------------------------------------------------------------------------------- /_extensions/positconfslides/positconfslides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_extensions/positconfslides/positconfslides.lua -------------------------------------------------------------------------------- /_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/_publish.yml -------------------------------------------------------------------------------- /positconfslides.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/positconfslides.Rproj -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template.html -------------------------------------------------------------------------------- /template.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template.qmd -------------------------------------------------------------------------------- /template_files/libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-contrib/posit_slides/posit-slides.js: -------------------------------------------------------------------------------- 1 | // the world's your oyster -------------------------------------------------------------------------------- /template_files/libs/quarto-html/light-border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/quarto-html/light-border.css -------------------------------------------------------------------------------- /template_files/libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/quarto-html/popper.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/quarto-html.min.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */ 2 | -------------------------------------------------------------------------------- /template_files/libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/quarto-html/quarto-syntax-highlighting.css -------------------------------------------------------------------------------- /template_files/libs/quarto-html/tabby.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/quarto-html/tabby.min.js -------------------------------------------------------------------------------- /template_files/libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/quarto-html/tippy.css -------------------------------------------------------------------------------- /template_files/libs/quarto-html/tippy.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/quarto-html/tippy.umd.min.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/README.md -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/LICENSE.txt -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/all.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/brands.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/fontawesome.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/regular.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/solid.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/svg-with-js.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/v4-shims.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-black.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-blue.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-green.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-orange.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-purple.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-red.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/boardmarker-yellow.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-blue.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-green.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-orange.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-purple.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-red.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-white.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/chalk-yellow.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/sponge.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-chalkboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-chalkboard/style.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /template_files/libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmasiello/positconfslides2023/HEAD/template_files/libs/revealjs/plugin/zoom/zoom.js --------------------------------------------------------------------------------