You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. Thanks for developing this, it is really useful!
I have an issue: When wrapping the following content:
> foo bar baz
> baz baz
for example, I end up with
> foo
bar
baz
> baz
baz
But I want the quotes to be fixed, of course:
> foo
> bar
> baz
> baz
> baz
Could you please add support for this? It is useful for wrapping Email quotations for example, but I think it could also be useful for wrapping markdown and other formats.
The text was updated successfully, but these errors were encountered:
Handling this kind of prefixes would indeed be cool! I would probably suggest taking a look at how Emacs handles this: the word wrapping in Emacs is quite clever and will adaptively handle things like (hanging) indentation, comments, and bullet lists.
These small helper functions makes it possible to take already wrapped
text and re-wrap it to a different width. Things like Markdown
unordered lists, quoted emails, and comment blocks can be rewrapped
with the refill function.
Fixes#60.
Fixes#121.
Fixed with the release of 0.13.3 and the new refill function. This function can rewrap text like the above (but only one paragraph at a time). Improvement PRs would be very welcome to make it even more flexible.
Hi. Thanks for developing this, it is really useful!
I have an issue: When wrapping the following content:
for example, I end up with
But I want the quotes to be fixed, of course:
Could you please add support for this? It is useful for wrapping Email quotations for example, but I think it could also be useful for wrapping markdown and other formats.
The text was updated successfully, but these errors were encountered: