├── .builder ├── Dockerfile ├── preparer.sh └── presenter.sh ├── .gitignore ├── LICENSE ├── README.md ├── input ├── res │ └── .gitkeep └── slides.md ├── prepare.sh └── present.sh /.builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/.builder/Dockerfile -------------------------------------------------------------------------------- /.builder/preparer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/.builder/preparer.sh -------------------------------------------------------------------------------- /.builder/presenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/.builder/presenter.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/README.md -------------------------------------------------------------------------------- /input/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/input/slides.md -------------------------------------------------------------------------------- /prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/prepare.sh -------------------------------------------------------------------------------- /present.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin-vanwinkle/presentation-builder/HEAD/present.sh --------------------------------------------------------------------------------