npm i --save-dev @marp-team/marp-cli gist:c8949276ceab6cd979f0f5c7b7c1b7fc
npx marp --engine marp-custom-engine your-slide.md
Last active
January 17, 2025 16:00
-
-
Save yhatt/c8949276ceab6cd979f0f5c7b7c1b7fc to your computer and use it in GitHub Desktop.
Marp custom engine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default ({ marp }) => { | |
console.log('You are using marp-custom-engine.') | |
return marp | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "marp-custom-engine", | |
"version": "0.0.0", | |
"type": "module", | |
"main": "engine.js", | |
"author": "Yuki Hattori", | |
"license": "WTFPL" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment