├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── components └── MarpSlide.vue ├── netlify.toml ├── package.json ├── screencast.gif ├── setup └── preparser.ts └── slides.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # for pnpm 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/README.md -------------------------------------------------------------------------------- /components/MarpSlide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/components/MarpSlide.vue -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/package.json -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/screencast.gif -------------------------------------------------------------------------------- /setup/preparser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/setup/preparser.ts -------------------------------------------------------------------------------- /slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhatt/poc-marp-slidev/HEAD/slides.md --------------------------------------------------------------------------------