()
| 133 | //////////////////////////////////////////////////////////////// |
| 134 | |
| 135 | func ExampleMinify() { |
| 136 | m := minify.New() |
| 137 | m.AddFuncRegexp(regexp.MustCompile("[/+]xml$"), Minify) |
| 138 | |
| 139 | if err := m.Minify("text/xml", os.Stdout, os.Stdin); err != nil { |
| 140 | panic(err) |
| 141 | } |
| 142 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…