https://github.com/fission-codes/diffusion-demo-slides-2019
Slides used for our Fission Live Demo ⚡️
https://github.com/fission-codes/diffusion-demo-slides-2019
Last synced: 11 months ago
JSON representation
Slides used for our Fission Live Demo ⚡️
- Host: GitHub
- URL: https://github.com/fission-codes/diffusion-demo-slides-2019
- Owner: fission-codes
- License: mit
- Created: 2019-11-14T20:50:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T02:55:41.000Z (over 3 years ago)
- Last Synced: 2025-07-07T10:24:44.344Z (12 months ago)
- Language: JavaScript
- Size: 413 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-starter-deck
[](./package.json)
[](https://www.netlify.com)
[](https://github.com/prettier/prettier)
Create presentations using Gatsby, React & Markdown. Inspired by Guillermo Rauch’s [deck on Next.js](https://deck.now.sh/) and [mdx-deck](https://github.com/jxnblk/mdx-deck).
➡️ **[See a live example](//gatsby-deck.netlify.com)**
## Installation
### With [`gatsby-cli`](https://www.npmjs.com/package/gatsby-cli)
```bash
$ gatsby new my-slides https://github.com/fabe/gatsby-starter-deck
```
### With `git clone`
```bash
$ 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.
```bash
# To develop & write
$ yarn develop
# To build
$ yarn build
```
## Writing
By default, use [src/slides/](src/slides/).
Markdown files are loaded in sorted path order. Slides are generated by
splitting each markdown file along `
` elements (`---` in Markdown lingo).
Examples:
```md
# This is the first slide
---
## This is the second slide

```
## Authors
- Fabian Schultz ([@fschultz\_](https://twitter.com/fschultz_))
- Frank Murphy ([AnIrishDuck](https://github.com/AnIrishDuck))
- Stefan Probst ([stefanprobst](https://github.com/stefanprobst))