
Now that we have a go.mod, we can properly upgrade to blackfriday/v2 The output remains the same, but this PR brings back italic links with '_', placing them into the link since this seems to be the more proper way. Fixes #182
9 lines
156 B
Modula-2
9 lines
156 B
Modula-2
module github.com/mmcgrana/gobyexample
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/russross/blackfriday v1.6.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0
|
|
)
|