1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-11-29 13:58:02 +03:00
mdx-deck/docs/exporting.md
2019-03-09 22:27:03 -05:00

46 lines
843 B
Markdown

# Exporting
## Static Bundle
To export your deck as a static HTML page with JS bundle,
add a `build` script to your `package.json` file.
```json
"scripts": {
"build": "mdx-deck build deck.mdx"
}
```
### PDF & Screenshots
To export a deck as PDF or create a PNG screenshot, install the export CLI package:
```sh
npm i @mdx-deck/export
```
Then run the following command to create a PDF:
```sh
mdx-deck-export pdf deck.mdx
```
Or export the first slide as a PNG:
```sh
mdx-deck-export png deck.mdx
```
### OG Image
To use the image as an open graph image, use the [Head](components.md#Head) component to add a meta tag.
Note that the meta tag should point to a full URL, including schema and domain name.
```mdx
import { Head } from 'mdx-deck'
<Head>
<meta name="og:image" content="https://example.com/card.png" />
</Head>
```