blob: 4a52e077f2848c673ef4e2c88c8bfaf97437ceb0 [file] [log] [blame]
package main
import (
"os"
"template"
"io/ioutil"
)
func main() {
b, _ := ioutil.ReadAll(os.Stdin)
template.HTMLFormatter(os.Stdout, b, "")
}