fix: add space in front of url in command desc

Kubernetes-commit: 016fe425e56f852bf2703c2548d23fb288f9ece2
This commit is contained in:
Guangming Wang 2019-12-02 23:30:27 +08:00 committed by Kubernetes Publisher
parent 6874454206
commit 26aadcf184
1 changed files with 1 additions and 0 deletions

View File

@ -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)
}