Yuki Hattori
Yuki Hattori
If you are using Marp CLI v4.0.0, please try enabling full debug logs to help identify where the bug is occurring. Add `--debug=all` option to CLI options. https://github.com/marp-team/marp-cli/blob/main/.github/CONTRIBUTING.md#debug
A possible cause is crashing Chromium process immidiately due to trying to launch the browser as the root user without disabling Chromium sandbox. Can you launch Chromium to check the...
This case has been fixed in Marp CLI [v4.0.2](https://github.com/marp-team/marp-cli/releases/tag/v4.0.2).
Marpit framework is a library for creating Markdown-based slide conversion engine like Marp. What kinds of demos would be necessary?
Marpit is an independent library from [Marp CLI](https://github.com/marp-team/marp-cli), so CLI arguments is out of the scope of Marpit. Please discuss on [Marp CLI's issue](https://github.com/marp-team/marp-cli/issues) or the [Marp discussion forum](https://github.com/orgs/marp-team/discussions), such...
Thanks for your suggestion. Let's start the design of a table block support for jsx-slack. ## Design jsx-slack emphasizes reducing cognitive load by being compatible with HTML. There is no...
While simple Slack Block Kit porting might be fine with this, jsx-slack is a library designed to increase the productivity of Slack apps by adopting familiar notations from HTML. It...
For now, it's available by providing an engine that has a plugin to remove presenter notes. ```bash marp presentation.md -o output.html --engine skip-notes.mjs ``` ```javascript // skip-notes.mjs const removePresenterNotesPlugin =...
If so, it should be a feature flag for [the `bespoke` template](https://github.com/marp-team/marp-cli#bespoke-template-default), such as `--bespoke.notes=false`, because the output of presenter notes is a feature specific to the `bespoke` template. In...
Marp CLI has [already supported a few environment variables to control Puppeteer arguments](https://github.com/marp-team/marp-cli/blob/main/src/browser/browsers/chrome.ts) (`PUPPETEER_HEADLESS_MODE`, `CHROME_NO_SANDBOX`, `CHROME_DISABLE_GPU`, `CHROME_ENABLE_EXTENSIONS`, etc) so it would be natural to add as one of them, to...