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
Currently, by looking at the output of mdv on Windows:
mdv
�[38;5;59m�[0m�[38;5;231mHeader 1�[0m
it appears that ANSI escapes for color are used. Windows does not natively support this, however.
There is a wrapper library called colorama which will allow ANSI escapes to be properly utilized by Windows.
colorama
Example:
import colorama # pip install colorama colorama.init() # All print() calls with ANSI escapes now work on Windows
Consider using this to make mdv more friendly for Windows?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, by looking at the output of
mdv
on Windows:it appears that ANSI escapes for color are used. Windows does not natively support this, however.
There is a wrapper library called
colorama
which will allow ANSI escapes to be properly utilized by Windows.Example:
Consider using this to make
mdv
more friendly for Windows?The text was updated successfully, but these errors were encountered: