Mark Harrison

Results 11 comments of Mark Harrison

See also: http://www.cirosantilli.com/markdown-styleguide/#separate-consecutive-elements. This covers my original rationale, and I suspect the blockquote rule and other rules will cover other mistaken cases of element separation.

This feature should allow relative line numbers also, which might be more useful for files that are edited a lot. E.g. ``` This is a test some long line here...

markdownlint was always intended to be a command line-only tool and not really used as a library or called directly from rake. That said, if it's just a matter of...

The current implementation will ignore any long lines where there is no whitespace past the column in question. The intent for this was that you could have a long URL...

Hi, @nbehrnd if you mean read only access, no permission is required, although I appreciate the heads up. If you mean read write access to publish new versions of the...

This does indeed appear to be fixed for my use case. I'm currently using a different terminal emulator, but I loaded up alacritty and tmux and the behavior is now...

See #81 for the type of thing this needs to catch.

One test: various tags/rules enabled, and run mdl with -l to see the list of enabled rules. This test should probably only care about rules that exist at the time...

Hi David, This appears to be because kramdown parses a fenced code block such as: `````` ``` $ foo ``` `````` as a codeblock with the contents `"$ foo\n"`, meaning...

Ignore that last question, I just realized I split lines on `\n+` which means blank lines (except for the last one) are already ignored when considering MD014, and in fact...