summaryrefslogtreecommitdiff
path: root/doc/codelab/wiki/htmlify.go
diff options
context:
space:
mode:
Diffstat (limited to 'doc/codelab/wiki/htmlify.go')
-rw-r--r--doc/codelab/wiki/htmlify.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/codelab/wiki/htmlify.go b/doc/codelab/wiki/htmlify.go
deleted file mode 100644
index 2a845a1740..0000000000
--- a/doc/codelab/wiki/htmlify.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2010 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "io/ioutil"
- "os"
- "text/template"
-)
-
-func main() {
- b, _ := ioutil.ReadAll(os.Stdin)
- template.HTMLEscape(os.Stdout, b)
-}