Skip to content
This repository has been archived by the owner on Jun 16, 2020. It is now read-only.

fabe/gatsby-starter-deck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚨 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 Rauch’s deck on Next.js and mdx-deck.

➡️ See a live example

Installation

$ 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