Merge pull request #85806 from beautytiger/dev-191202-urlspace

fix: add space in front of url in command desc
This commit is contained in:
Kubernetes Prow Robot 2020-04-27 09:35:30 -07:00 committed by GitHub
commit ca8db0b396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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