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