🗣 Create presentations using Gatsby, React & Markdown.
Go to file
dependabot[bot] d0a1e11afa Bump eslint-utils from 1.4.0 to 1.4.2 (#21)
Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/mysticatea/eslint-utils/releases)
- [Commits](https://github.com/mysticatea/eslint-utils/compare/v1.4.0...v1.4.2)

Signed-off-by: dependabot[bot] <support@github.com>
2019-08-30 18:08:27 +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 Add credits. 2019-07-28 23:39:45 +02:00
yarn.lock Bump eslint-utils from 1.4.0 to 1.4.2 (#21) 2019-08-30 18:08:27 +02:00

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