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 was looking for a library to pretty print md files from within my own python script, and not as a standalone cli.
This package works great, you should add examples for using the renderer directly from other scripts:
import consolemd with open('README.md', 'r') as readme: readme_content = readme.read() renderer = consolemd.Renderer() renderer.render(readme_content)
cheers
The text was updated successfully, but these errors were encountered:
That's a good idea, I'll do that. Thanks for the suggestion!
Sorry, something went wrong.
Came here for this, thanks for the snippet!
No branches or pull requests
I was looking for a library to pretty print md files from within my own python script, and not as a standalone cli.
This package works great, you should add examples for using the renderer directly from other scripts:
cheers
The text was updated successfully, but these errors were encountered: