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