(format string, a ...any)
| 36 | var extensionPattern = regexp.MustCompile(`\{\{ext:([^:]+):([^:]+)(?::([^}]+))?\}\}`) |
| 37 | |
| 38 | func debugf(format string, a ...any) { |
| 39 | debuglog.Debug(debuglog.Trace, format, a...) |
| 40 | } |
| 41 | |
| 42 | // matchTriple extracts the first two required and optional third value from a token |
| 43 | // pattern of the form {{type:part1:part2(:part3)?}} returning part1, part2, part3 (possibly empty) |
no outgoing calls
no test coverage detected