No description
Find a file
dependabot[bot] 9cade3675b build(deps-dev): bump tslib from 2.6.2 to 2.8.1
Bumps [tslib](https://github.com/Microsoft/tslib) from 2.6.2 to 2.8.1.
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](https://github.com/Microsoft/tslib/compare/v2.6.2...v2.8.1)

---
updated-dependencies:
- dependency-name: tslib
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-02 12:32:10 +09:00
.github Update dependabot.yml 2024-03-03 08:45:10 +09:00
docs 📝 Add transition part in readme 2023-03-02 18:32:23 +09:00
src fix: simplify wikilink replacement in "lazy mode" 2023-08-06 22:07:14 +09:00
.editorconfig 🎉 Initial commit 2023-02-23 09:37:34 +09:00
.eslintignore 🎉 Initial commit 2023-02-23 09:37:34 +09:00
.eslintrc 🎉 Initial commit 2023-02-23 09:37:34 +09:00
.gitignore 🎉 Initial commit 2023-02-23 09:37:34 +09:00
.npmrc 🎉 Initial commit 2023-02-23 09:37:34 +09:00
.prettierrc.yaml 🎉 Initial commit 2023-02-23 09:37:34 +09:00
esbuild.config.mjs fix: MaxOS command not found issue 2023-03-02 20:25:00 +09:00
LICENSE Create LICENSE 2023-02-25 20:39:47 +09:00
manifest.json 1.5.0 2023-08-06 22:27:18 +09:00
package-lock.json build(deps-dev): bump tslib from 2.6.2 to 2.8.1 2025-01-02 12:32:10 +09:00
package.json build(deps-dev): bump tslib from 2.6.2 to 2.8.1 2025-01-02 12:32:10 +09:00
README.md Add wikilink images to README.md 2023-08-06 22:19:38 +09:00
tsconfig.json use resourceUrl to preview and base64 to export 2023-02-28 22:56:33 +09:00
version-bump.mjs 🎉 Initial commit 2023-02-23 09:37:34 +09:00
versions.json 1.5.0 2023-08-06 22:27:18 +09:00

Obsidian Marp Plugin

Plugin to use Marp with Obsidian.md.

Open the Preview

Select the tab for the Markdown file, then click the button on the ribbon or run Marp: Open Preview from the command palette to see a preview.

open_preview

Auto Reload

auto_reload

Export Slides

You need to have Node.js installed to export slides, as this plugin uses the npx command to export slides.
You can choose your preferred format from PDF, PPTX and HTML.
The output is always to the Downloads directory.

export

Embed Images

When exporting, images are converted to Base64 and embedded in the file, so you can share slides with embedded local images.
The image path can be an absolute or relative path from the root of the vault.
You can use both Wikilink format (![[path/to/image.png]]) and CommomMark format (![alt](path/to/image.png)).

Transition

transition

Transitions can be used by exporting in HTML format. However, you need to set the viewTransition API to Enable in Chrome 110. (Not required if you are using the beta version (111+) of Chrome.)

enable_view_transitions_api

Settings

Enable Auto Reload

type: toggle
default: on

If on, the preview will be updated automatically when the Markdown file is saved.

Enable Open Preview in Split Tab

type: toggle
default: on

Enables the ability to open previews in split tabs. If disabled, a new tab will be created in the same split as the markdown file.

Theme Folder Location

type: text default: MarpTheme

Specify the relative path to the directory where the theme is stored. By saving the css files in the specified directory, Marp can use a custom theme.

*Obsidian must be restarted after adding css.

Example: If you set MarpTheme as Theme Folder Location

<your-vault>
└── MarpTheme  ← Make this directory
    ├── beamer.css  ← Then save custom css here!
    ├── border.css
    └── gradient.css