├── .gitattributes ├── .gitignore ├── Example-Input ├── Example-Input.md └── imgs │ └── cat.png ├── Example-Output ├── Example-Output.htm ├── Example-Output.html ├── Example-Output.pdf └── Example-Output.pptx ├── LICENSE ├── README.md ├── _bib ├── apa6th.csl ├── citethemright10th.csl └── references.bib ├── _quarto.yml └── _resources ├── scripts ├── return-to-source.ts └── shortcodes.lua └── templates ├── html.html ├── latex.tex ├── pptx ├── classy.pptx ├── cosmic-latte.pptx ├── dark-mode.pptx └── nord-theme.pptx └── slide-theme.scss /.gitattributes: -------------------------------------------------------------------------------- 1 | *.qmd linguist-language=markdown 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Example-Input/Example-Input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/Example-Input/Example-Input.md -------------------------------------------------------------------------------- /Example-Input/imgs/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/Example-Input/imgs/cat.png -------------------------------------------------------------------------------- /Example-Output/Example-Output.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/Example-Output/Example-Output.htm -------------------------------------------------------------------------------- /Example-Output/Example-Output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/Example-Output/Example-Output.html -------------------------------------------------------------------------------- /Example-Output/Example-Output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/Example-Output/Example-Output.pdf -------------------------------------------------------------------------------- /Example-Output/Example-Output.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/Example-Output/Example-Output.pptx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/README.md -------------------------------------------------------------------------------- /_bib/apa6th.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_bib/apa6th.csl -------------------------------------------------------------------------------- /_bib/citethemright10th.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_bib/citethemright10th.csl -------------------------------------------------------------------------------- /_bib/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_bib/references.bib -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_quarto.yml -------------------------------------------------------------------------------- /_resources/scripts/return-to-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/scripts/return-to-source.ts -------------------------------------------------------------------------------- /_resources/scripts/shortcodes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/scripts/shortcodes.lua -------------------------------------------------------------------------------- /_resources/templates/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/html.html -------------------------------------------------------------------------------- /_resources/templates/latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/latex.tex -------------------------------------------------------------------------------- /_resources/templates/pptx/classy.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/pptx/classy.pptx -------------------------------------------------------------------------------- /_resources/templates/pptx/cosmic-latte.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/pptx/cosmic-latte.pptx -------------------------------------------------------------------------------- /_resources/templates/pptx/dark-mode.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/pptx/dark-mode.pptx -------------------------------------------------------------------------------- /_resources/templates/pptx/nord-theme.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/pptx/nord-theme.pptx -------------------------------------------------------------------------------- /_resources/templates/slide-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmablog/simple-presentations-generator/HEAD/_resources/templates/slide-theme.scss --------------------------------------------------------------------------------