gobyexample/go.mod
Eli Bendersky dff4ceda31 Upgrade blackfriday to v2 and fix underscore italics
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
2021-02-19 21:07:06 -08:00

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
)