Russ Cox

Results 790 comments of Russ Cox

Alternately, it may be that packages is meant to list only the paths, not any other metadata, and the ImportCount field in the corresponding struct is missing a `` `json:",omitempty"`...

(On the flip side, I love the fact that writing files to cloud storage uses DetectContentType to set the Content-Type; that makes the Go libraries better than gsutil cp!)

Thanks @dsymonds, now attached to top message. I went through the motions the first time but missed the quite well-hidden "We don't support that file type" error message from the...

Indeed. One option would be to reverse the order the two statements and insert a third between them: > Entity and numeric character references are treated as literal text in...

And, assuming example 31 were in the new middle section, another useful example would be something using an HTML entity that commonmark does not allow, such as `&copy`, which is...

I created PR #690 in case it is helpful. No worries if you'd rather do something different.

I think I understand the algorithm now. I would suggest that section 6 start with a bit more elaboration of the left-to-right sentence, something like: --- Inlines, like blocks, can...

The current left-to-right scan that takes things one token at a time seems to me the only viable possibility, given that different syntaxes can end up breaking up into different...

You are right about the emphasis being lower precedence than code spans - I was not entirely precise about that. It remains true that emphasis is lower precedence than the...

I see what you mean. Perhaps the statement to make would be: > Code spans, HTML tags, autolinks, link labels, link destinations, and link titles all have equal precedence and...