()
| 598 | } |
| 599 | |
| 600 | func ExampleMinify_writer() { |
| 601 | m := minify.New() |
| 602 | m.Add("text/html", &Minifier{}) |
| 603 | |
| 604 | w := m.Writer("text/html", os.Stdout) |
| 605 | w.Write([]byte("<html><body><h1>Example</h1></body></html>")) |
| 606 | w.Close() |
| 607 | // Output: <h1>Example</h1> |
| 608 | } |