| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import React from 'react';
- import { Marp } from '@marp-team/marp-core';
- import { Element } from '@marp-team/marpit';
- import Head from 'next/head';
- import { ReactMarkdown } from 'react-markdown/lib/react-markdown';
- import type { PresentationOptions } from '../consts';
- import * as extractSections from '../services/renderer/extract-sections';
- import './Slides.global.scss';
- export const MARP_CONTAINER_CLASS_NAME = 'marpit';
- const marp = new Marp({
- container: [
- new Element('div', { class: MARP_CONTAINER_CLASS_NAME }),
- new Element('div', { class: 'slides' }),
- ],
- inlineSVG: false,
- emoji: undefined,
- html: false,
- math: false,
- });
- type Props = {
- options: PresentationOptions,
- children?: string,
- }
- export const Slides = (props: Props): JSX.Element => {
- const { options, children } = props;
- const { rendererOptions, isDarkMode, disableSeparationByHeader } = options;
- rendererOptions.remarkPlugins?.push([
- extractSections.remarkPlugin,
- {
- isDarkMode,
- disableSeparationByHeader,
- },
- ]);
- const { css } = marp.render('', { htmlAsArray: true });
- return (
- <>
- <Head>
- <style>{css}</style>
- </Head>
- <ReactMarkdown {...rendererOptions}>
- { children ?? '## No Contents' }
- </ReactMarkdown>
- </>
- );
- };
|