Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: refactor to use %q instead of "%s" #2001

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/man_docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func manPreamble(buf io.StringWriter, header *GenManHeader, cmd *cobra.Command,
description = cmd.Short
}

cobra.WriteStringAndCheck(buf, fmt.Sprintf(`%% "%s" "%s" "%s" "%s" "%s"
cobra.WriteStringAndCheck(buf, fmt.Sprintf(`%% %q %q %q %q %q
# NAME
`, header.Title, header.Section, header.date, header.Source, header.Manual))
cobra.WriteStringAndCheck(buf, fmt.Sprintf("%s \\- %s\n\n", dashedName, cmd.Short))
Expand Down
2 changes: 1 addition & 1 deletion site/content/docgen/md.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The `filePrepender` will prepend the return value given the full filepath to the
```go
const fmTemplate = `---
date: %s
title: "%s"
title: %q
slug: %s
url: %s
---
Expand Down
2 changes: 1 addition & 1 deletion site/content/docgen/rest.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The `filePrepender` will prepend the return value given the full filepath to the
```go
const fmTemplate = `---
date: %s
title: "%s"
title: %q
slug: %s
url: %s
---
Expand Down
2 changes: 1 addition & 1 deletion site/content/docgen/yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The `filePrepender` will prepend the return value given the full filepath to the
```go
const fmTemplate = `---
date: %s
title: "%s"
title: %q
slug: %s
url: %s
---
Expand Down
Loading