(runtime *common.RuntimeContext, flagName string)
| 149 | } |
| 150 | |
| 151 | func markdownFlagExplicitlyEmpty(runtime *common.RuntimeContext, flagName string) bool { |
| 152 | return runtime.Changed(flagName) && strings.TrimSpace(runtime.Str(flagName)) == "" |
| 153 | } |
| 154 | |
| 155 | func validateMarkdownFileName(name, flagName string) error { |
| 156 | trimmed := strings.TrimSpace(name) |
no test coverage detected