Fusuma

Fusuma

  • Docs
  • Sponsors
  • GitHub

›Getting Started

Getting Started

  • Preparation
  • Creating Your Slide

Guides

  • Configuring Fusuma
  • Slide Syntax
  • Math, Diagrams, and Flowcharts
  • Audits

Modes

  • Presenter Mode
  • Live Mode

Creating Your Slide

Fusuma allow using .md and .mdx extensions and provides 2 methods for dividing your slide.

Markdown

<!-- 0-title.md -->

## Hello

This is the first slide.

MDX

What's mdx?

MDX is an authorable format that lets you seamlessly use JSX in your markdown documents. You can import components, like interactive charts or notifications, and export metadata. This makes writing long-form content with components a blast.

mdx-js/mdx

In other words, you can use react components into Markdown.

<!-- 0-title.mdx -->

import { Sample } from './scripts/Sample';

<Sample />
// Sample.js

import React from 'react';

export const Sample = () => <p>Hello from jsx!!</p>;

Dividing Slides

The order of the slides is determined by the file name, but also you can split using --- in the file.

<!-- 0-title.md -->

## Hello

This is the first slide.

---

## 🤭

This is the second slide.

See the example directory for use-case. fusuma/intro

← PreparationConfiguring Fusuma →
  • Markdown
  • MDX
  • What's mdx?
  • Dividing Slides
Fusuma
Docs
Getting StartedGuidesModes
Contact Us
GitHubTwitter
More
GitHubStar
Copyright © 2021 hiroppy