2010-04-28 12:36:39 +10:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"io/ioutil"
|
2011-11-08 15:43:02 -08:00
|
|
|
"os"
|
|
|
|
|
"text/template"
|
2010-04-28 12:36:39 +10:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
b, _ := ioutil.ReadAll(os.Stdin)
|
2011-08-18 10:38:08 +10:00
|
|
|
template.HTMLEscape(os.Stdout, b)
|
2010-04-28 12:36:39 +10:00
|
|
|
}
|