mirror of
https://github.com/golang/go.git
synced 2025-11-08 04:31:01 +00:00
13 lines
149 B
Go
13 lines
149 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"os"
|
||
|
|
"template"
|
||
|
|
"io/ioutil"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
b, _ := ioutil.ReadAll(os.Stdin)
|
||
|
|
template.HTMLFormatter(os.Stdout, b, "")
|
||
|
|
}
|