Is your feature request related to a problem? Please describe.
I'm trying to use pyhtml2md as a more performant replacement for html2text. One current difference is that html2text will do a hard wrap at 78 (default) characters.
Describe the solution you'd like
It would be nice to be able to configure the line length limit and use it as a "hard stop" instead of having it somewhere between 80 and 100 characters. It would be nice to be able to configure the line length limit and use it as a "hard stop" instead of having it somewhere between 80 and 100 characters.
Describe alternatives you've considered
I'm currently using python's textwrap module. But its slow and a bit hacky.
Is your feature request related to a problem? Please describe.
I'm trying to use pyhtml2md as a more performant replacement for html2text. One current difference is that html2text will do a hard wrap at 78 (default) characters.
Describe the solution you'd like
It would be nice to be able to configure the line length limit and use it as a "hard stop" instead of having it somewhere between 80 and 100 characters. It would be nice to be able to configure the line length limit and use it as a "hard stop" instead of having it somewhere between 80 and 100 characters.
Describe alternatives you've considered
I'm currently using python's textwrap module. But its slow and a bit hacky.