From 016fe425e56f852bf2703c2548d23fb288f9ece2 Mon Sep 17 00:00:00 2001 From: Guangming Wang Date: Mon, 2 Dec 2019 23:30:27 +0800 Subject: [PATCH] fix: add space in front of url in command desc --- staging/src/k8s.io/kubectl/pkg/util/templates/markdown.go | 1 + 1 file changed, 1 insertion(+) diff --git a/staging/src/k8s.io/kubectl/pkg/util/templates/markdown.go b/staging/src/k8s.io/kubectl/pkg/util/templates/markdown.go index 65ee886d10a..4a15898adbf 100644 --- a/staging/src/k8s.io/kubectl/pkg/util/templates/markdown.go +++ b/staging/src/k8s.io/kubectl/pkg/util/templates/markdown.go @@ -133,6 +133,7 @@ func (r *ASCIIRenderer) Table(out *bytes.Buffer, header []byte, body []byte, col } func (r *ASCIIRenderer) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) { + out.WriteString(" ") r.fw(out, link) }