Dmitri Shuralyov

Results 869 comments of Dmitri Shuralyov

@rtfb, are these not it? - [#116 - Link parsing doesn't correctly match URLs when they include brackets](https://github.com/russross/blackfriday/issues/116) - [#123 - Link parenthesis evaluation seems wrong.](https://github.com/russross/blackfriday/issues/123) There's also this one...

@andig The module with module path `github.com/russross/blackfriday` has the following release versions published: - v1.5.1 - v1.5.2 - v2.0.0+incompatible You can see it for yourself by running: ``` $ GO111MODULE=on...

> The go.mod in 1.5.2 has the suffix `v1`, Where? I don't see it: https://github.com/russross/blackfriday/blob/v1.5.2/go.mod#L1 > ``` > go: gopkg.in/russross/[email protected]: go.mod has non-....v1 module path "github.com/russross/blackfriday" at revision v1.5.2 >...

Thanks for providing additional information @F21, it's helpful. > I think the repo encourages the use of gopkg.in, see: https://github.com/russross/blackfriday#installation I know it does for v2, but I didn't think...

Making that change would break far too many people. I don’t think it’s a change we can make. We should update the README to reflect the current reality better.

This isn't done; those are three v1 PRs that need to be ported to v2. I'll work on porting #352 now. **Edit:** It is done now, see PR #509.

Are you asking about using the original compressed content directly, rather than decompressing and then compressing it again? If so, this would have to be supported by `go-bindata` first, since...

The instrumentation framework seems interesting and I'd like to play with it when I find time. It reminds me of how the cover tool works internally to determine test coverage....

For serializing Go objects, I can use `encoding/gob` and/or [go-goon](https://github.com/shurcooL/go-goon#examples) to pretty print them.

FWIW, in Go 1.17 the [`go/format`](https://pkg.go.dev/go/format) package (like the `gofmt` binary) takes care of this¹, so if used, the output is guaranteed to be gofmt'ed (and continue to be over...