├── .circleci └── config.yml ├── .github ├── CONTRIBUTING.md ├── dependabot.yml └── workflows │ └── github-release.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .stylelintrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── browser.d.ts ├── browser.js ├── eslint.config.mjs ├── jest.config.mjs ├── jest.setup.js ├── marp.config.mjs ├── package.json ├── rollup.config.mjs ├── sandbox └── README.md ├── scripts ├── browser.js └── postcss-optimize-default-theme.mjs ├── src ├── auto-scaling │ ├── code-block.ts │ ├── fitting-header.ts │ ├── index.ts │ └── utils.ts ├── browser.ts ├── custom-elements │ ├── browser │ │ ├── index.ts │ │ ├── marp-auto-scaling.ts │ │ └── marp-custom-element.ts │ ├── definitions.ts │ ├── index.ts │ └── postcss-plugin.ts ├── emoji │ ├── emoji.ts │ └── twemoji.scss ├── highlightjs.ts ├── html │ ├── allowlist.ts │ └── html.ts ├── marp.ts ├── math │ ├── context.ts │ ├── katex.scss │ ├── katex.ts │ ├── math.ts │ ├── mathjax.scss │ └── mathjax.ts ├── observer.ts ├── script │ ├── browser-script.ts │ └── script.ts ├── size │ └── size.ts ├── slug │ └── slug.ts └── typings.d.ts ├── test ├── __snapshots__ │ └── marp.ts.snap ├── _transformers │ └── sass.js ├── browser.ts ├── custom-elements │ └── browser.ts ├── marp.ts ├── math │ ├── __snapshots__ │ │ └── katex.ts.snap │ └── katex.ts └── size │ └── size.ts ├── themes ├── README.md ├── assets │ └── uncover-quote.svg ├── default.scss ├── example.md ├── gaia.scss └── uncover.scss └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.github/workflows/github-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.21.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.prettierignore -------------------------------------------------------------------------------- /.stylelintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/.stylelintrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/README.md -------------------------------------------------------------------------------- /browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/browser.d.ts -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/browser.cjs') 2 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/jest.setup.js -------------------------------------------------------------------------------- /marp.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/marp.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/sandbox/README.md -------------------------------------------------------------------------------- /scripts/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/scripts/browser.js -------------------------------------------------------------------------------- /scripts/postcss-optimize-default-theme.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/scripts/postcss-optimize-default-theme.mjs -------------------------------------------------------------------------------- /src/auto-scaling/code-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/auto-scaling/code-block.ts -------------------------------------------------------------------------------- /src/auto-scaling/fitting-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/auto-scaling/fitting-header.ts -------------------------------------------------------------------------------- /src/auto-scaling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/auto-scaling/index.ts -------------------------------------------------------------------------------- /src/auto-scaling/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/auto-scaling/utils.ts -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/browser.ts -------------------------------------------------------------------------------- /src/custom-elements/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/custom-elements/browser/index.ts -------------------------------------------------------------------------------- /src/custom-elements/browser/marp-auto-scaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/custom-elements/browser/marp-auto-scaling.ts -------------------------------------------------------------------------------- /src/custom-elements/browser/marp-custom-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/custom-elements/browser/marp-custom-element.ts -------------------------------------------------------------------------------- /src/custom-elements/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/custom-elements/definitions.ts -------------------------------------------------------------------------------- /src/custom-elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/custom-elements/index.ts -------------------------------------------------------------------------------- /src/custom-elements/postcss-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/custom-elements/postcss-plugin.ts -------------------------------------------------------------------------------- /src/emoji/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/emoji/emoji.ts -------------------------------------------------------------------------------- /src/emoji/twemoji.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/emoji/twemoji.scss -------------------------------------------------------------------------------- /src/highlightjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/highlightjs.ts -------------------------------------------------------------------------------- /src/html/allowlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/html/allowlist.ts -------------------------------------------------------------------------------- /src/html/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/html/html.ts -------------------------------------------------------------------------------- /src/marp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/marp.ts -------------------------------------------------------------------------------- /src/math/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/math/context.ts -------------------------------------------------------------------------------- /src/math/katex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/math/katex.scss -------------------------------------------------------------------------------- /src/math/katex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/math/katex.ts -------------------------------------------------------------------------------- /src/math/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/math/math.ts -------------------------------------------------------------------------------- /src/math/mathjax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/math/mathjax.scss -------------------------------------------------------------------------------- /src/math/mathjax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/math/mathjax.ts -------------------------------------------------------------------------------- /src/observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/observer.ts -------------------------------------------------------------------------------- /src/script/browser-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/script/browser-script.ts -------------------------------------------------------------------------------- /src/script/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/script/script.ts -------------------------------------------------------------------------------- /src/size/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/size/size.ts -------------------------------------------------------------------------------- /src/slug/slug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/slug/slug.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /test/__snapshots__/marp.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/__snapshots__/marp.ts.snap -------------------------------------------------------------------------------- /test/_transformers/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/_transformers/sass.js -------------------------------------------------------------------------------- /test/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/browser.ts -------------------------------------------------------------------------------- /test/custom-elements/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/custom-elements/browser.ts -------------------------------------------------------------------------------- /test/marp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/marp.ts -------------------------------------------------------------------------------- /test/math/__snapshots__/katex.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/math/__snapshots__/katex.ts.snap -------------------------------------------------------------------------------- /test/math/katex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/math/katex.ts -------------------------------------------------------------------------------- /test/size/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/test/size/size.ts -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/themes/README.md -------------------------------------------------------------------------------- /themes/assets/uncover-quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/themes/assets/uncover-quote.svg -------------------------------------------------------------------------------- /themes/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/themes/default.scss -------------------------------------------------------------------------------- /themes/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/themes/example.md -------------------------------------------------------------------------------- /themes/gaia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/themes/gaia.scss -------------------------------------------------------------------------------- /themes/uncover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/themes/uncover.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marp-team/marp-core/HEAD/tsconfig.json --------------------------------------------------------------------------------