🗣 Create presentations using Gatsby, React & Markdown.
Go to file
Fabian Schultz face8b61e7
👋
2020-06-16 18:27:47 +02:00
src Adapt to spec change (#14) 2019-03-14 00:28:07 +01:00
.gitignore Initial commit. 2017-11-24 00:22:47 +01:00
.prettierrc [WIP] Update to Gatsby v2 (#8) 2018-09-19 09:24:14 -04:00
gatsby-config.js Add typedefs for Slide, remove unused deps, use createContentDige… (#20) 2019-07-28 20:34:41 +02:00
gatsby-node.js Add typedefs for Slide, remove unused deps, use createContentDige… (#20) 2019-07-28 20:34:41 +02:00
LICENSE Initial commit. 2017-11-24 00:22:47 +01:00
package.json Add typedefs for Slide, remove unused deps, use createContentDige… (#20) 2019-07-28 20:34:41 +02:00
README.md 👋 2020-06-16 18:27:47 +02:00
yarn.lock Bump mixin-deep from 1.3.1 to 1.3.2 (#22) 2019-08-30 18:10:09 +02:00

🚨 This starter is now archived in favor of gatsby-theme-mdx-deck. Thanks for your interest 💜


gatsby-starter-deck

dependencies deploys by netlify styled with prettier

Create presentations using Gatsby, React & Markdown. Inspired by Guillermo Rauchs deck on Next.js and mdx-deck.

➡️ See a live example

Installation

With gatsby-cli

$ gatsby new my-slides https://github.com/fabe/gatsby-starter-deck

With git clone

$ git clone git@github.com:fabe/gatsby-starter-deck.git my-slides
$ cd my-slides
$ yarn

Usage

Edit and extend your slides inside the src/slides.md file. Navigate with the arrow keys.

# To develop & write
$ yarn develop

# To build
$ yarn build

Writing

By default, use src/slides/.

Markdown files are loaded in sorted path order. Slides are generated by splitting each markdown file along <hr/> elements (--- in Markdown lingo).

Examples:

# This is the first slide

---

## This is the second slide

![Monkey](//i.imgur.com/PnbINJ6.gif)

Authors