We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a tool that outputs some markdown. I would like to pipe that markdown to markcat so that it is beautifully rendered. But I couldn't do that.
mytool | markcat
results in an error:
File doesn't exist
and an exit code of 1.
I also tried to use markcat <<< "$(mytool)" but that failed in a similar way.
markcat <<< "$(mytool)"
The text was updated successfully, but these errors were encountered:
That's because currently markcat only supports reading from files.
I'll change the title of the issue and make it a requested feature, you can contribute by changing this file and making a pull request if you wish.
Sorry, something went wrong.
No branches or pull requests
I have a tool that outputs some markdown. I would like to pipe that markdown to markcat so that it is beautifully rendered. But I couldn't do that.
results in an error:
and an exit code of 1.
I also tried to use
markcat <<< "$(mytool)"
but that failed in a similar way.The text was updated successfully, but these errors were encountered: