gitextract_8zf9058k/ ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── LICENSE ├── README.md ├── netlify.toml ├── package.json ├── tsconfig.json └── website/ ├── .eslintrc.js ├── assets.d.ts ├── babel.config.js ├── blog/ │ ├── 202205-ecosystem-update.md │ ├── how-to-make-custom-transition.md │ ├── marp-for-vs-code-v1.md │ ├── marpit-v2-marp-core-v2-and-marp-cli-v1.md │ ├── re-creation-of-marp-website.md │ └── the-story-of-marp-next.md ├── components/ │ ├── Button.tsx │ ├── CodeBlock.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── Layout.tsx │ ├── Marp.tsx │ ├── ScrollToTop.tsx │ ├── Title.tsx │ ├── Typography.tsx │ ├── blog/ │ │ └── BlogHeader.tsx │ ├── docs/ │ │ ├── Breadcrumb.tsx │ │ ├── Layout.tsx │ │ ├── Navigation.tsx │ │ └── layouts/ │ │ ├── Desktop.tsx │ │ └── Mobile.tsx │ ├── markdown/ │ │ ├── Anchor.tsx │ │ ├── Heading.tsx │ │ ├── Image.tsx │ │ └── Pre.tsx │ └── top/ │ ├── Description.tsx │ ├── Features.tsx │ ├── GetStarted.tsx │ └── Hero.tsx ├── css/ │ ├── index.css │ └── plugin-rem.js ├── docs/ │ ├── guide/ │ │ ├── directives.md │ │ ├── fitting-header.md │ │ ├── fragmented-list.md │ │ ├── heading-divider.md │ │ ├── how-to-write-slides.md │ │ ├── image-syntax.md │ │ ├── math-typesetting.md │ │ └── theme.md │ ├── introduction/ │ │ ├── install.md │ │ └── whats-marp.md │ ├── manifest.yaml │ └── tools/ │ ├── marp-cli.md │ └── marp-for-vs-code.md ├── global.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages/ │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── blog/ │ │ └── [slug].tsx │ ├── blog.tsx │ ├── docs/ │ │ └── [[...slug]].tsx │ └── index.tsx ├── postcss.config.js ├── public/ │ └── blog/ │ └── .gitignore ├── tailwind.config.js ├── tsconfig.json └── utils/ ├── date.ts ├── hooks/ │ └── useFontFace.tsx ├── markdown/ │ ├── index.tsx │ ├── parse/ │ │ ├── image-paragraph-to-figure.ts │ │ ├── index.ts │ │ └── marp-code-block.ts │ └── renderer/ │ ├── index.ts │ └── sanitize.ts ├── title.ts └── url.ts