-
When I type marp in bash, it get stuck and has no output even I use Ctrl+C to kill it. But when runs in powershell it works well. |
Beta Was this translation helpful? Give feedback.
Answered by
yhatt
Mar 7, 2024
Replies: 1 comment 1 reply
-
It looks similar to the case of In MinGW (Git Bash), Marp CLI would work by disabling to read piped stdin through marp --no-stdin Or use # Use `marp.cmd` instead of `marp` when using Marp CLI installed by npm. winpty seems not to be able to automatically detect the correct extension for running.
winpty marp.cmd |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Do7and
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks similar to the case of
python
.https://stackoverflow.com/questions/32597209/python-not-working-in-the-command-line-of-git-bash
In MinGW (Git Bash), Marp CLI would work by disabling to read piped stdin through
--no-stdin
option.Or use
winpty
bridge to run Marp CLI.# Use `marp.cmd` instead of `marp` when using Marp CLI installed by npm. winpty seems not to be able to automatically detect the correct extension for running. winpty marp.cmd