Fix wrapping on lines succeeded by unwrappable lines #228
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When outputting as
commonmark
lines followed by a long, unwrappablesection would wrap incorrectly. For example:
When running this with the
--to commonmark
and--width 72
options:It outputs the following:
What was happening is that when a new line is needed, the algorithm
resets a bunch of variables like the current column, if we're at the
beginning of a line, etc. One of those variables is the position of the
last place we can break a line: the last non-space character. This is
stored in
CommonMarkFormatter
slast_breakable
field.cmark-gfm resets this in
render.c
, and now so does comrak.This also adds a new
commonmark
test type that doesn't write to HTMLto test commonmark specific features or bugs.
Fixes #227