doc: move wiki tutorial into articles directory, rmdir doc/codelab

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5701050
This commit is contained in:
Andrew Gerrand 2012-02-27 11:25:43 +11:00
parent b49dcb9d37
commit cd1a2f7e74
25 changed files with 17 additions and 11 deletions

View file

@ -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)
}