Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ sudo: false
branches:
only:
- master
# TODO(REWRITE): Remove after we release the rewrite.
- task/rewrite

env:
global:
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ $ yarn
Our examples are spread out across multiple projects depending on where the core technology lies. We publish most of these to `npm` for use in `spectacle-cli` project to either use with the CLI (`spectacle`) or generate a fresh project boilerplate (`spectacle-boilerplate`).

- `spectacle`
- [`examples/js`](https://github.com/FormidableLabs/spectacle/tree/task/rewrite/examples/js)
- [`examples/md`](https://github.com/FormidableLabs/spectacle/tree/task/rewrite/examples/md)
- [`examples/one-page`](https://github.com/FormidableLabs/spectacle/tree/task/rewrite/examples/one-page.html)
- [`examples/js`](https://github.com/FormidableLabs/spectacle/tree/master/examples/js)
- [`examples/md`](https://github.com/FormidableLabs/spectacle/tree/master/examples/md)
- [`examples/one-page`](https://github.com/FormidableLabs/spectacle/tree/master/examples/one-page.html)
- `spectacle-mdx-loader`
- [`examples/mdx`](https://github.com/FormidableLabs/spectacle-mdx-loader/tree/master/examples/mdx)
- `spectacle-cli`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</a>
</p>

Looking for a quick preview of what you can do with Spectacle? Check out our Live Demo deck [here](https://raw.githack.com/FormidableLabs/spectacle/task/rewrite/examples/one-page.html/).
Looking for a quick preview of what you can do with Spectacle? Check out our Live Demo deck [here](https://raw.githack.com/FormidableLabs/spectacle/master/examples/one-page.html/).

Have a question about Spectacle? Submit an issue in this repository using the "Question" template.

Expand Down
6 changes: 3 additions & 3 deletions docs/content/basic-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ $ spectacle-boilerplate -m md

To see a more complete examples of a presentation generated with MDX or Markdown, please check out our three samples available for use with the CLI as well as manual builds:

- [`.md` Example](https://github.com/FormidableLabs/spectacle/tree/task/rewrite/examples/md) (`spectacle`)
- [`.md` Example](https://github.com/FormidableLabs/spectacle/tree/master/examples/md) (`spectacle`)
- [`.mdx` Example](https://github.com/FormidableLabs/spectacle-mdx-loader/tree/master/examples/mdx) (`spectacle-mdx-loader`)
- [`.mdx` + Babel Example](https://github.com/FormidableLabs/spectacle-cli/tree/master/examples/cli-mdx-babel) (`spectacle-cli`)

Expand All @@ -90,7 +90,7 @@ This approach is where you use the library's tags to compose your presentation.

The bare minimum you'll want to use to build your presentation are the `Deck` element and a `Slide` element. Each `Slide` represents a slide within your presentation `Deck` (the entire slideshow).

To see a complete example of a presentation written in JSX, please check out our [sample JSX presentation](https://github.com/FormidableLabs/spectacle/blob/task/rewrite/examples/js/index.js).
To see a complete example of a presentation written in JSX, please check out our [sample JSX presentation](https://github.com/FormidableLabs/spectacle/blob/master/examples/js/index.js).

You can also bootstrap a fresh JSX project with `spectacle-boilerplate`:

Expand Down Expand Up @@ -144,7 +144,7 @@ To create a Spectacle presentation that lives in a single HTML page, you will on
</script>
```

To see a complete example of a presentation written as a single HTML page, please check out our [sample one page presentation](https://github.com/FormidableLabs/spectacle/blob/task/rewrite/examples/one-page.html).
To see a complete example of a presentation written as a single HTML page, please check out our [sample one page presentation](https://github.com/FormidableLabs/spectacle/blob/master/examples/one-page.html).

<a name="presenting"></a>

Expand Down