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
in the __init__.py , optwrap function
__init__.py
optwrap function
# line 918 wrapped = wrap( para, self.body_width, break_long_words=False, subsequent_indent=indent, )
this will limit url to 78, maybe we change it to ( like this ? ):
if (para.startswith("![]")): wrapped = wrap( para, 999, break_long_words=False, subsequent_indent=indent, ) else: wrapped = wrap( para, self.body_width, break_long_words=False, subsequent_indent=indent, )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
today, i try it to convert html to md,but img url is not right
in the
__init__.py
,optwrap function
this will limit url to 78,
maybe we change it to ( like this ? ):
The text was updated successfully, but these errors were encountered: