X Tutup
Skip to content

Commit d2b6d19

Browse files
committed
Update cpuguy83/go-md2man binary to v2.0.1
full diff: cpuguy83/go-md2man@v2.0.0...v2.0.1 - Fix handling multiple definition descriptions - Fix inline markup causing table cells to split - Remove escaping tilde character (prevents tildes (`~`) from disappearing). - Do not escape dash, underscore, and ampersand (prevents ampersands (`&`) from disappearing). - Ignore unknown HTML tags to prevent noisy warnings Note that this only updates the binaries we install. The vendor code also includes go-md2man (as indirect dependency of urfave/cli). I don't think we use that feature, so I did not add it to our go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent b809212 commit d2b6d19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
with:
130130
path: src/github.com/containerd/containerd
131131

132-
- run: GO111MODULE=on go get github.com/cpuguy83/go-md2man/v2@v2.0.0
132+
- run: GO111MODULE=on go get github.com/cpuguy83/go-md2man/v2@v2.0.1
133133

134134
- run: make man
135135
working-directory: src/github.com/containerd/containerd

script/setup/install-dev-tools

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ GO111MODULE=on go get github.com/stevvooe/protobuild
3333
GO111MODULE=off go get -d github.com/gogo/googleapis || true
3434
GO111MODULE=off go get -d github.com/gogo/protobuf || true
3535

36-
GO111MODULE=on go get github.com/cpuguy83/go-md2man/v2@v2.0.0
36+
GO111MODULE=on go get github.com/cpuguy83/go-md2man/v2@v2.0.1
3737
GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.38.0

0 commit comments

Comments
 (0)
X Tutup