mdx-deck

:spades: MDX-based presentation decks

Github星跟踪图

MDX Deck

Award-winning React MDX-based presentation decks

Build Status
Version
Downloads

View demo

Getting Started

npm i -D mdx-deck

Create an MDX file and separate each slide with ---.


# Hello

---

## This is my deck

---

## The End

Add a run script to your package.json with the MDX Deck CLI
pointing to the .mdx file to start the development server:

"scripts": {
  "start": "mdx-deck deck.mdx"
}

Start the development server:

npm start

Use the left and right arrow keys to navigate through the presentation.

Using MDX

MDX uses Markdown syntax and can render React components inline with JSX.

Imports

To import components, use ES import syntax separated with empty lines between any markdown or JSX syntax.

import { Box } from 'theme-ui'

<Box color="tomato">Hello</Box>

Read more about MDX syntax in the MDX Docs.

Theming

MDX Deck uses Theme UI and Emotion for styling, making practically any part of the presentation themeable.
It also includes several built-in themes to change the look and feel of the presentation.

Components

MDX Deck includes built-in components to help with creating presentations,
a Notes component for adding speaker notes,
a Head component for the document head,
Header and Footer components for persistent header and footer content,
and a Steps component for adding multiple intermediate steps in a single slide.

Read more in the Components docs.

Third-Party Components

These optional libraries are intended for use with MDX Deck.

  • CodeSurfer: React component for scrolling, zooming and highlighting code.
  • mdx-code: Runnable code playgrounds for MDX Deck.
  • mdx-deck-live-code: Live React and JS coding in slides.

Note: please check with version compatibility when using these libraries.

Layouts

Each slide can include a custom layout around its content,
which can be used as a template for visually differentiating slides.

// example Layout.js
import React from 'react'

export default ({ children }) => (
  <div
    style={{
      width: '100vw',
      height: '100vh',
      backgroundColor: 'tomato',
    }}>
    {children}
  </div>
)
import Layout from './Layout'

# No Layout

---

<Layout>

# Custom Layout

</Layout>

The layout component will wrap the MDX elements within that slide,
which means you can add custom layout styles
or style child elements with CSS-in-JS.

Presenter Mode

Press Option + P to toggle Presenter Mode,
which will show a preview of the next slide, a timer, and speaker notes.

presenter mode screenshot

The presentation can be opened in two separate windows at the same time,
and it will stay in sync with the other window.

Keyboard Shortcuts, Key, Description, -----------, --------------------------------------------, Left Arrow, Page Up, Shift + Space, Go to previous slide (or step in Steps), Right Arrow, Page Down, Space, Go to next slide (or step in Steps), Option + P, Toggle Presenter Mode, Option + O, Toggle Overview Mode, Option + G, Toggle Grid Mode

CLI Options

-p --port     Dev server port
-h --host     Host the dev server listens to
--no-open     Prevent from opening in default browser

Videos & Articles

Examples

See how others have used MDX Deck for their presentations.

Usage Examples

The following examples will open in CodeSandbox.


MIT License

主要指标

概览
名称与所有者jxnblk/mdx-deck
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2018-07-28 22:36:10
推送于2023-01-04 01:58:59
最后一次提交2021-08-03 19:58:29
发布数144
最新版本名称v4.1.1 (发布于 2020-03-12 13:04:24)
第一版名称v1.0.0-1 (发布于 2018-07-29 14:28:38)
用户参与
星数11.4k
关注者数80
派生数606
提交数1.5k
已启用问题?
问题数325
打开的问题数95
拉请求数354
打开的拉请求数46
关闭的拉请求数105
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?