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
remark-lint enters infinite loop; I’ll push a fix for this;
Carriage returns are not supported. Fix being to strip them before passing to remark (most editors do that by default or are configurable to do it). Long term fix is to allow carriage returns everywhere where newlines are also possible in the parser, instead of removing them in a preprocessing step. The latter will be a lot of work and I’m not really interested in doing that. But if you’d like to take a stab, I’d gladly merge a PR!
See gist for example.
npm install npm test
README.md and example-good.md should be fine, example-bad.md is bad
Removing either
.remarkrc
orexample-bad.md
allows the test to pass. As does an in-place edit with perl.perl -i -lne 's/\r//g; print' example-bad.md
The text was updated successfully, but these errors were encountered: