This commit is contained in:
Thomas Ruoff
2019-01-09 20:23:22 +01:00
commit 61e47432a7
6 changed files with 8654 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
dist
node_modules

38
README.md Normal file
View File

@@ -0,0 +1,38 @@
# mdx-deck basic template
This was generated with [mdx-deck][]'s `npm init deck` command.
## Development
To run the presentation deck in development mode:
```sh
npm start
```
Edit the [`deck.mdx`](deck.mdx) file to get started.
## Exporting
To build the presentation deck as static HTML:
```sh
npm run build
```
To export a PDF:
```sh
npm run pdf
```
To export an image of the title slide:
```sh
npm run image
```
For more documentation see the [mdx-deck][] repo.
[mdx-deck]: https://github.com/jxnblk/mdx-deck

23
deck.mdx Normal file
View File

@@ -0,0 +1,23 @@
import { Head } from 'mdx-deck'
export { default as theme } from './theme'
<Head>
<title>Presentation Title</title>
</Head>
# Hello
---
## Edit this file
To create your presentation
```notes
- Create speaker notes in fenced code blocks
```
---
<https://github.com/jxnblk/mdx-deck>

8560
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"private": true,
"version": "1.0.0",
"description": "Deck created with mdx-deck",
"scripts": {
"start": "mdx-deck deck.mdx",
"build": "mdx-deck build deck.mdx",
"pdf": "mdx-deck pdf deck.mdx",
"image": "mdx-deck screenshot deck.mdx",
"help": "mdx-deck"
},
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"mdx-deck": "^1.6.7"
},
"name": "lt-35c3"
}

12
theme.js Normal file
View File

@@ -0,0 +1,12 @@
import theme from 'mdx-deck/themes'
export default {
...theme,
// Customize your presentation theme here.
//
// Read the docs for more info:
// https://github.com/jxnblk/mdx-deck/blob/master/docs/theming.md
// https://github.com/jxnblk/mdx-deck/blob/master/docs/themes.md
}