change golang to go
authorNate Finch <nate.finch@gmail.com>
Mon, 24 Mar 2014 11:19:25 +0000 (07:19 -0400)
committerspf13 <steve.francia@gmail.com>
Mon, 24 Mar 2014 18:34:41 +0000 (14:34 -0400)
README.md
docs/content/community/contributors.md
docs/content/content/example.md
docs/content/indexes/category.md
docs/content/indexes/overview.md
docs/content/layout/functions.md
docs/content/layout/go-templates.md
docs/content/layout/templates.md
docs/content/overview/installing.md
docs/layouts/index.html
hugolib/index.go

index b39ca88f07a560b7cdcaa4e2f129e12b16b2f62e..fd77853ed8ecb64db2ed77a872ad71a45ff832d3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ and [friends](http://github.com/spf13/hugo/graphs/contributors) in Go.
 
 ## Overview
 
-Hugo is a static site generator written in GoLang. It is optimized for
+Hugo is a static site generator written in Go. It is optimized for
 speed, easy use and configurability. Hugo takes a directory with content and
 templates and renders them into a full html website.
 
@@ -26,7 +26,7 @@ kind of website including blogs, tumbles and docs.
 
 ## Installing Hugo
 
-Hugo is written in GoLang with support for Windows, Linux, FreeBSD and OSX.
+Hugo is written in Go with support for Windows, Linux, FreeBSD and OSX.
 
 The latest release can be found at [hugo releases](https://github.com/spf13/hugo/releases).
 We currently build for Windows, Linux, FreeBSD and OS X for x64
index 0f5f9470ed96e701e4804e00150a2a957d67b685..1cc8b0cf4f2ff39b90f59d65a1caf30f29ada2d6 100644 (file)
@@ -7,7 +7,7 @@ groups_weight: 40
 notoc: true
 ---
 
-Hugo was built with love and golang by:
+Hugo was built with love and Go by:
 
 * Steve Francia - [spf13](https://github.com/spf13)
 * Noah Campbell - [noahcampbell](https://github.com/noahcampbell)
index 5ef6a372c0bdf9b532acff8b8252aa206b097860..b012cd67df38d9b0ff83baf124c37ea42d6036df 100644 (file)
@@ -14,22 +14,22 @@ Somethings are better shown than explained. The following is a very basic exampl
 
 {{% highlight yaml %}}
 ---
-Title:       "Nitro : A quick and simple profiler for golang"
+Title:       "Nitro : A quick and simple profiler for Go"
 Description: "Nitro is a simple profiler for you go lang applications"
-Tags:        [ "Development", "golang", "profiling" ]
+Tags:        [ "Development", "Go", "profiling" ]
 date:        "2013-06-19"
-Topics:      [ "Development", "GoLang" ]
+Topics:      [ "Development", "Go" ]
 Slug:        "nitro"
 project_url: "http://github.com/spf13/nitro"
 ---
 
 # Nitro
 
-Quick and easy performance analyzer library for golang.
+Quick and easy performance analyzer library for Go.
 
 ## Overview
 
-Nitro is a quick and easy performance analyzer library for golang.
+Nitro is a quick and easy performance analyzer library for Go.
 It is useful for comparing A/B against different drafts of functions
 or different functions.
 
index 45a5e9b00e72383d9dd843843952c1f33198ae36..2240e8379f10bfcfdac4be2278676d9969608606 100644 (file)
@@ -55,7 +55,7 @@ Make sure that the index is set in the front matter:
     "title": "Hugo: A fast and flexible static site generator",
     "categories": [
         "Development",
-        "golang",
+        "Go",
         "Blogging"
     ],
     "slug": "hugo"
index b72c1c5b6997615700878175073280d765c5807e..43543a3e28bf428170ac21f43fee7c117b0f8686 100644 (file)
@@ -18,8 +18,8 @@ It's important to understand what Indexes do. At it's most basic form an index
 is simply a map of a key to a list of content values.
 
 In the hugo internals this is stored as `Site.Indexes[Plural][key][]pages`.
-For example all the content tagged with GoLang would be found at 
-`Site.Indexes["tags"]["golang"]`.
+For example all the content tagged with Go would be found at 
+`Site.Indexes["tags"]["Go"]`.
 
 For a
 more complete example see the source of [this docs site](http://github.com/spf13/hugo/docs/).
@@ -65,7 +65,7 @@ and assign all keys you want this content to match against.
     "title": "Hugo: A fast and flexible static site generator",
     "tags": [
         "Development",
-        "golang",
+        "Go",
         "fast",
         "Blogging"
     ],
index c42d9e4c985098e1dba71c0097fd77d5a39271f8..061c19ef82c95283e1f981783a18bfc2bdb75686 100644 (file)
@@ -6,7 +6,7 @@ groups: ["layout"]
 groups_weight: 70
 ---
 
-Hugo uses the excellent golang html/template library for its template engine.
+Hugo uses the excellent go html/template library for its template engine.
 It is an extremely lightweight engine that provides a very small amount of
 logic. In our experience that it is just the right amount of logic to be able
 to create a good static website.
@@ -14,7 +14,7 @@ to create a good static website.
 Go templates are lightweight but extensible. Hugo has added the following
 functions to the basic template logic.
 
-Golang documentation for the built-in functions can be found [here](http://golang.org/pkg/text/template/)
+Go documentation for the built-in functions can be found [here](http://golang.org/pkg/text/template/)
 
 ## General
 
index 22c77713158971dc8c78bf0491219b0c59505cb8..d50e5858c3059d608d55a4da204d3dac96b982b2 100644 (file)
@@ -5,14 +5,14 @@ groups: ["layout"]
 groups_weight: 15
 ---
 
-Hugo uses the excellent [golang][] [html/template][gohtmltemplate] library for
+Hugo uses the excellent [go][] [html/template][gohtmltemplate] library for
 its template engine. It is an extremely lightweight engine that provides a very
 small amount of logic. In our experience that it is just the right amount of
 logic to be able to create a good static website. If you have used other
 template systems from different languages or frameworks you will find a lot of
 similarities in go templates.
 
-This document is a brief primer on using go templates. The [golang docs][gohtmltemplate]
+This document is a brief primer on using go templates. The [go docs][gohtmltemplate]
 provide more details.
 
 ## Introduction to Go Templates
@@ -23,7 +23,7 @@ One consequence of this simplicity is that go templates parse very quickly.
 
 A unique characteristic of go templates is they are content aware. Variables and
 content will be sanitized depending on the context of where they are used. More
-details can be found in the [golang docs][gohtmltemplate].
+details can be found in the [go docs][gohtmltemplate].
 
 ## Basic Syntax
 
@@ -217,7 +217,7 @@ Could be rewritten as
 
 ## Context (aka. the dot)
 
-The most easily overlooked concept to understand about golang templates is that {{ . }}
+The most easily overlooked concept to understand about go templates is that {{ . }}
 always refers to the current context. In the top level of your template this
 will be the data set made available to it. Inside of a iteration it will have
 the value of the current item. When inside of a loop the context has changed. .
@@ -329,5 +329,5 @@ so, such as in this example:
 ```
 
 
-[golang]: <http://golang.org/>
+[go]: <http://golang.org/>
 [gohtmltemplate]: <http://golang.org/pkg/html/template/>
index 1c563e486afaa164cdf8faf6c8d06ab255d9161f..ca90d61200219ed3dbb3a1445795499c3c497500 100644 (file)
@@ -7,7 +7,7 @@ groups: ["layout"]
 groups_weight: 10
 ---
 
-Hugo uses the excellent golang html/template library for its template engine.
+Hugo uses the excellent go html/template library for its template engine.
 It is an extremely lightweight engine that provides a very small amount of
 logic. In our experience that it is just the right amount of logic to be able
 to create a good static website
index caa8516a98514eeb628c0b68b790fac664432cbb..e80ace84f1a252fa4afc0ca548f4b941588972e7 100644 (file)
@@ -6,7 +6,7 @@ groups: ['gettingStarted']
 groups_weight: 20
 ---
 
-Hugo is written in GoLang with support for Windows, Linux, FreeBSD and OSX.
+Hugo is written in Go with support for Windows, Linux, FreeBSD and OSX.
 
 The latest release can be found at [hugo releases](https://github.com/spf13/hugo/releases).
 We currently build for Windows, Linux, FreeBSD and OS X for x64
index 1e0922e83002dbb3a9bb422e5752c166f3f6dc32..63245579ca08bc8c8c128612c150b8e89b131133 100755 (executable)
                       <div class="item"> <blockquote><p>Finally someone builds me my own static site generator </p>&mdash; Hugo Rodger-Brown (@hugorodgerbrown) <a href="https://twitter.com/hugorodgerbrown/statuses/364417910153818112">August 5, 2013</a></blockquote> </div>\r
                       <div class="item"> <blockquote><p>I&#39;m loving the static site generator renaissance we are currently enjoying. Hugo is new, looks great, written in Go</p>&mdash; Jim Biancolo (@jimbiancolo) <a href="https://twitter.com/jimbiancolo/statuses/408678420348813314">December 5, 2013</a></blockquote> </div>\r
                       <div class="item"> <blockquote><p>Good work on Hugo, I&#39;m impressed with the speed!</p>&mdash; Ludovic Chabant (@ludovicchabant) <a href="https://twitter.com/ludovicchabant/statuses/408806199602053120">December 6, 2013</a></blockquote> </div>\r
-                      <div class="item"> <blockquote><p>Checking out Hugo; Loving it so far. Like Jekyll but not so blog-oriented and written in golang</p>&mdash; Jose Gonzalvo (@jgonzalvo) <a href="https://twitter.com/jgonzalvo/statuses/408177855819173888">December 4, 2013</a></blockquote> </div>\r
+                      <div class="item"> <blockquote><p>Checking out Hugo; Loving it so far. Like Jekyll but not so blog-oriented and written in go</p>&mdash; Jose Gonzalvo (@jgonzalvo) <a href="https://twitter.com/jgonzalvo/statuses/408177855819173888">December 4, 2013</a></blockquote> </div>\r
                   </div>\r
 \r
                 </div>\r
index 30cb8f941f114aa3180a18fc7cfb9807affade17..f87ca60352edb694590c3c2dc9361a16a42cebdc 100644 (file)
@@ -28,7 +28,7 @@ type IndexList map[string]Index
  *  An index is a map of keywords to a list of pages.
  *  For example
  *    TagIndex['technology'] = WeightedPages
- *    TagIndex['golang']  =  WeightedPages2
+ *    TagIndex['go']  =  WeightedPages2
  */
 type Index map[string]WeightedPages