Move newline to inside the DisableAutoGenTag block

Fixes https://github.com/spf13/cobra/issues/2029
This commit is contained in:
Dan Ramich 2023-09-20 11:57:39 -06:00
parent 0c72800b8d
commit 50ba2caeb5

View file

@ -105,9 +105,9 @@ func GenMarkdownCustom(cmd *cobra.Command, w io.Writer, linkHandler func(string)
link = strings.ReplaceAll(link, " ", "_")
buf.WriteString(fmt.Sprintf("* [%s](%s)\t - %s\n", cname, linkHandler(link), child.Short))
}
buf.WriteString("\n")
}
if !cmd.DisableAutoGenTag {
buf.WriteString("\n")
buf.WriteString("###### Auto generated by spf13/cobra on " + time.Now().Format("2-Jan-2006") + "\n")
}
_, err := buf.WriteTo(w)