INNER CODE UNIT · Go

addFrontMatter

kubernetes-sigs/gateway-api · tools/geps/main.go:237

func addFrontMatter(buf *bytes.Buffer, title string, weight int) {
	buf.WriteString("---\n")
	fmt.Fprintf(buf, "title: %q\n", title)
	if weight > 0 {
		fmt.Fprintf(buf, "weight: %d\n", weight)
	}
	buf.WriteString("---\n\n")
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…