(contents []byte)
| 84 | } |
| 85 | |
| 86 | func hasSetupBlock(contents []byte) bool { |
| 87 | lower := strings.ToLower(string(contents)) |
| 88 | return strings.Contains(lower, "clarity show") |
| 89 | } |
| 90 | |
| 91 | func buildSetupBlock(withTrailingNewline bool) string { |
| 92 | block := strings.TrimSpace(setupTemplate) |