Mike Anderson

Results 17 comments of Mike Anderson

You're right the spec does explicitly call it out as spaces/tabs in links. > These four components may be separated by spaces, tabs, and up to one line ending.

In that case, my initial fix should be sufficient I think. I'm miss-remembering from some other issues I've been digging into for space handling in HTML elements... sorry.

This is wandering off-topic a little - but this is enlightening for me. Does this mean the current parsing of `` as an HTML entry is wrong? The `\b` cant...

@jgm PR here: https://github.com/commonmark/commonmark.js/pull/259

Can you just convert to a string when needed using `format!("{}", e)`? i.e. instead of using ~~~ let s = e.msg ~~~ you can just do ~~~ let s =...

One question I thought of when looking at that section, is "can we apply this multiple times to a given entry". i.e. ~~~ #[derive(Debug, Snafu)] enum Error { SourceNeedsToBeConverted {...

I agree that in markdown the accidentally switching between tight and loose lists is painful, when all you're trying to do is to make the raw document more readable. To...