Docs: Add nohighlight shortcode and improve formatting
authorAnthony Fok <foka@debian.org>
Wed, 23 Dec 2015 16:31:07 +0000 (09:31 -0700)
committerAnthony Fok <foka@debian.org>
Wed, 23 Dec 2015 16:31:07 +0000 (09:31 -0700)
And some random formatting and copyediting fixes.

See also #1708

15 files changed:
docs/content/content/archetypes.md
docs/content/content/example.md
docs/content/content/front-matter.md
docs/content/content/ordering.md
docs/content/content/sections.md
docs/content/extras/aliases.md
docs/content/extras/crossreferences.md
docs/content/overview/usage.md
docs/content/taxonomies/methods.md
docs/content/taxonomies/ordering.md
docs/content/taxonomies/usage.md
docs/content/templates/functions.md
docs/content/tutorials/installing-on-windows.md
docs/content/tutorials/migrate-from-jekyll.md
docs/layouts/shortcodes/nohighlight.html [new file with mode: 0644]

index d3338c1d7114d19153c9d413afed14931985a618..05269d38425069fb2b4206c1c65a976e5ad70926 100644 (file)
@@ -29,10 +29,12 @@ We will use ‘tags’ and ‘categories’ for our taxonomies, so let's create
 
 #### archetypes/default.md
 
-    +++
-    tags = ["x", "y"]
-    categories = ["x", "y"]
-    +++
+```toml
++++
+tags = ["x", "y"]
+categories = ["x", "y"]
++++
+```
 
 > __CAVEAT:__  Some editors (e.g. Sublime, Emacs) do not insert an EOL (end-of-line) character at the end of the file (i.e. EOF).  If you get a [strange EOF error](/troubleshooting/strange-eof-error/) when using `hugo new`, please open each archetype file (i.e.&nbsp;`archetypes/*.md`) and press <kbd>Enter</kbd> to type a carriage return after the closing `+++` or `---` as necessary.
 
@@ -47,12 +49,14 @@ Hugo would create the file with the following contents:
 
 #### content/post/my-new-post.md
 
-    +++
-    title = "my new post"
-    date = "2015-01-12T19:20:04-07:00"
-    tags = ["x", "y"]
-    categories = ["x", "y"]
-    +++
+```toml
++++
+title = "my new post"
+date = "2015-01-12T19:20:04-07:00"
+tags = ["x", "y"]
+categories = ["x", "y"]
++++
+```
 
 We see that the `title` and `date` variables have been added, in addition to the `tags` and `categories` variables which were carried over from `archetype/default.md`.
 
@@ -64,11 +68,13 @@ Earlier you created a new content type by adding a new subfolder to the content
 
 #### archetypes/musician.md
 
-    +++
-    name = ""
-    bio = ""
-    genre = ""
-    +++
+```toml
++++
+name = ""
+bio = ""
+genre = ""
++++
+```
 
 Now let's create a new musician.
 
@@ -78,13 +84,15 @@ This time, Hugo recognizes the custom archetype and uses it instead of the defau
 
 #### content/musician/mozart.md
 
-    +++
-    title = "mozart"
-    date = "2015-08-24T13:04:37+02:00"
-    name = ""
-    bio = ""
-    genre = ""
-    +++
+```toml
++++
+title = "mozart"
+date = "2015-08-24T13:04:37+02:00"
+name = ""
+bio = ""
+genre = ""
++++
+```
 
 ## Using a different front matter format
 
index 20d07c46913892ec966062b87a2b7d9ce81a8c57..43727c69b0b519762c2b0c0b84a58bfa913725f4 100644 (file)
@@ -6,9 +6,9 @@ linktitle: Example
 menu:
   main:
     parent: content
+prev: /content/summaries
 next: /themes/overview
 notoc: true
-prev: /content/summaries
 title: Example Content File
 weight: 70
 ---
@@ -19,8 +19,7 @@ Some things are better shown than explained. The following is a very basic examp
 
 With TOML front matter:
 
-```markdown
-+++
+<pre><code class="language-toml">+++
 date        = "2013-06-21T11:27:27-04:00"
 title       = "Nitro: A quick and simple profiler for Go"
 description = "Nitro is a simple profiler for your Golang applications"
@@ -29,8 +28,7 @@ topics      = [ "Development", "Go" ]
 slug        = "nitro"
 project_url = "https://github.com/spf13/nitro"
 +++
-
-# Nitro
+</code><code class="language-markdown"># Nitro
 
 Quick and easy performance analyzer library for [Go](http://golang.org/).
 
@@ -48,11 +46,11 @@ of the library.
     $ go get github.com/spf13/nitro
 
 Next, include nitro in your application.
-```
+</code></pre>
 
 You may also use the equivalent YAML front matter:
 
-```markdown
+```yaml
 ---
 date:        "2013-06-21T11:27:27-04:00"
 title:       "Nitro: A quick and simple profiler for Go"
index 8d82fd958a59e92596caa46be0d1e23377388f3c..4bf75f05896c2b3bd0f09146c098b82786ea34c7 100644 (file)
@@ -28,50 +28,54 @@ Supported formats:
 
 ## TOML Example
 
-    +++
-    title = "spf13-vim 3.0 release and new website"
-    description = "spf13-vim is a cross platform distribution of vim plugins and resources for Vim."
-    tags = [ ".vimrc", "plugins", "spf13-vim", "vim" ]
-    date = "2012-04-06"
-    categories = [
-      "Development",
-      "VIM"
-    ]
-    slug = "spf13-vim-3-0-release-and-new-website"
-    +++
-    
-    Content of the file goes Here
+<pre><code class="language-toml">+++
+title = "spf13-vim 3.0 release and new website"
+description = "spf13-vim is a cross platform distribution of vim plugins and resources for Vim."
+tags = [ ".vimrc", "plugins", "spf13-vim", "vim" ]
+date = "2012-04-06"
+categories = [
+  "Development",
+  "VIM"
+]
+slug = "spf13-vim-3-0-release-and-new-website"
++++
+</code><code class="language-markdown">Content of the file goes Here
+</code></pre>
 
 ## YAML Example
 
-    ---
-    title: "spf13-vim 3.0 release and new website"
-    description: "spf13-vim is a cross platform distribution of vim plugins and resources for Vim."
-    tags: [ ".vimrc", "plugins", "spf13-vim", "vim" ]
-    date: "2012-04-06"
-    categories:
-      - "Development"
-      - "VIM"
-    slug: "spf13-vim-3-0-release-and-new-website"
-    ---
-    
-    Content of the file goes Here
+```yaml
+---
+title: "spf13-vim 3.0 release and new website"
+description: "spf13-vim is a cross platform distribution of vim plugins and resources for Vim."
+tags: [ ".vimrc", "plugins", "spf13-vim", "vim" ]
+date: "2012-04-06"
+categories:
+  - "Development"
+  - "VIM"
+slug: "spf13-vim-3-0-release-and-new-website"
+---
+
+Content of the file goes Here
+```
 
 ## JSON Example
 
-    {
-        "title": "spf13-vim 3.0 release and new website",
-        "description": "spf13-vim is a cross platform distribution of vim plugins and resources for Vim.",
-        "tags": [ ".vimrc", "plugins", "spf13-vim", "vim" ],
-        "date": "2012-04-06",
-        "categories": [
-            "Development",
-            "VIM"
-        ],
-        "slug": "spf13-vim-3-0-release-and-new-website",
-    }
-    
-    Content of the file goes Here
+```json
+{
+    "title": "spf13-vim 3.0 release and new website",
+    "description": "spf13-vim is a cross platform distribution of vim plugins and resources for Vim.",
+    "tags": [ ".vimrc", "plugins", "spf13-vim", "vim" ],
+    "date": "2012-04-06",
+    "categories": [
+        "Development",
+        "VIM"
+    ],
+    "slug": "spf13-vim-3-0-release-and-new-website",
+}
+
+Content of the file goes Here
+```
 
 ## Variables
 
index 07600b34de12d2f9e4d45b4c7cba2f95bbfd715a..cf00eaea78e5903184ae1d10c68ecd9b40bab171 100644 (file)
@@ -26,13 +26,14 @@ guaranteed.
 
 ## Assigning weight to content
 
-    +++
-    weight = 4
-    title = "Three"
-    date = "2012-04-06"
-    +++
-    Front Matter with Ordered Pages 3
-
+```toml
++++
+weight = 4
+title = "Three"
+date = "2012-04-06"
++++
+Front Matter with Ordered Pages 3
+```
 
 ## Ordering Content Within Taxonomies
 
index 03002a42ffc0713c86b7e77c071bea9c45300030..979edf70b5cbb8f018f85aa0d6830233d34bd55e 100644 (file)
@@ -17,17 +17,17 @@ uses the top level of your content organization as **the Section**.
 
 The following example site uses two sections, "post" and "quote".
 
-    .
-    └── content
-        ├── post
-        |   ├── firstpost.md       // <- http://1.com/post/firstpost/
-        |   ├── happy
-        |   |   └── ness.md   // <- http://1.com/post/happy/ness/
-        |   └── secondpost.md      // <- http://1.com/post/secondpost/
-        └── quote
-            ├── first.md           // <- http://1.com/quote/first/
-            └── second.md          // <- http://1.com/quote/second/
-
+{{< nohighlight >}}.
+└── content
+    ├── post
+    |   ├── firstpost.md       // <- http://1.com/post/firstpost/
+    |   ├── happy
+    |   |   └── ness.md        // <- http://1.com/post/happy/ness/
+    |   └── secondpost.md      // <- http://1.com/post/secondpost/
+    └── quote
+        ├── first.md           // <- http://1.com/quote/first/
+        └── second.md          // <- http://1.com/quote/second/
+{{< /nohighlight >}}
 
 ## Section Lists
 
index 885abc967e5e2e353ec741aa589beffadab1b576..7e2c6ef3117afed522c6e35a3273c6537a3ff44d 100644 (file)
@@ -27,7 +27,7 @@ Given a post on your current Hugo site, with a path of:
 
 ### TOML frontmatter
 
-~~~yaml
+```toml
 +++
         ...
 aliases = [
@@ -36,11 +36,11 @@ aliases = [
 ]
         ...
 +++
-~~~
+```
 
 ### YAML frontmatter
 
-~~~yaml
+```yaml
 ---
         ...
 aliases:
@@ -48,15 +48,15 @@ aliases:
     - /2010/01/01/even-earlier-url.html
         ...
 ---
-~~~
+```
 
 Now when you visit any of the locations specified in aliases, _assuming the same site domain_, you'll be redirected to the page they are specified on.
 
 ## Important Behaviors
 
 1. *Hugo makes no assumptions about aliases. They also don't change based
-on your UglyURLs setting. You need to provide absolute path to your webroot and the
-complete filename or directory.*
+on your UglyURLs setting. You need to provide absolute path to your webroot
+and the complete filename or directory.*
 
 2. *Aliases are rendered prior to any content and will be overwritten by
 any content with the same location.*
@@ -67,7 +67,7 @@ When aliases are specified, Hugo creates a physical folder structure to match th
 
 Assuming a baseurl of `mysite.tld`, the contents of the html file will look something like:
 
-~~~html
+```html
 <!DOCTYPE html>
 <html>
   <head>
@@ -76,6 +76,6 @@ Assuming a baseurl of `mysite.tld`, the contents of the html file will look some
     <meta http-equiv="refresh" content="0;url=http://mysite.tld/posts/my-original-url"/>
   </head>
 </html>
-~~~
+```
 
 The `http-equiv="refresh"` line is what performs the redirect, in 0 seconds in this case.
index 0b37cc09c89987c60e2ce06973967e72a80deecd..d803406296dc8204279dfe6ad9e369d679607e1b 100644 (file)
@@ -14,12 +14,14 @@ Hugo makes it easy to link documents together with the `ref` and `relref` shortc
 
 ## Using `ref` and `relref`
 
-    {{</* ref "document" */>}}
-    {{</* ref "#anchor" */>}}
-    {{</* ref "document#anchor" */>}}
-    {{</* relref "document" */>}}
-    {{</* relref "#anchor" */>}}
-    {{</* relref "document#anchor" */>}}
+```django
+{{</* ref "document" */>}}
+{{</* ref "#anchor" */>}}
+{{</* ref "document#anchor" */>}}
+{{</* relref "document" */>}}
+{{</* relref "#anchor" */>}}
+{{</* relref "document#anchor" */>}}
+```
 
 The single parameter to `ref` is a string with a content _document name_ (`about.md`), an in-document _anchor_ (`#who`), or both (`about.md#who`).
 
index 9619c0a5313975a5a1c37e4c236a9f5c698ddee8..4b002457afcbd126043fe81c02a132bb42d5fab2 100644 (file)
@@ -14,7 +14,7 @@ weight: 30
 
 Make sure either `hugo` is in your `PATH` or provide a path to it.
 
-<pre><code class="hljs nohighlight">$ hugo help
+{{< nohighlight >}}$ hugo help
 
 Hugo is a Fast and Flexible Static Site Generator built with love by spf13 and friends in Go.
 
@@ -65,20 +65,21 @@ Additional help topics:
  hugo convert         Convert will modify your content to different formats hugo list            Listing out various types of content
 
 Use "hugo help [command]" for more information about a command.
-</code></pre>
+{{< /nohighlight >}}
 
 ## Common Usage Example
 
 The most common use is probably to run `hugo` with your current directory being the input directory:
 
-    $ hugo
-    0 draft content
-    0 future content
-    99 pages created
-    0 paginator pages created
-    16 tags created
-    0 groups created
-    in 120 ms
+{{< nohighlight >}}$ hugo
+0 draft content
+0 future content
+99 pages created
+0 paginator pages created
+16 tags created
+0 groups created
+in 120 ms
+{{< /nohighlight >}}
 
 This generates your web site to the `public/` directory,
 ready to be deployed to your web server.
@@ -89,34 +90,36 @@ ready to be deployed to your web server.
 If you are working on things and want to see the changes immediately, tell Hugo to watch for changes.
 Hugo will watch the filesystem for changes, and rebuild your site as soon as a file is saved:
 
-    $ hugo -s ~/Code/hugo/docs
-    0 draft content
-    0 future content
-    99 pages created
-    0 paginator pages created
-    16 tags created
-    0 groups created
-    in 120 ms
-    Watching for changes in /Users/spf13/Code/hugo/docs/content
-    Press Ctrl+C to stop
+{{< nohighlight >}}$ hugo -s ~/Code/hugo/docs
+0 draft content
+0 future content
+99 pages created
+0 paginator pages created
+16 tags created
+0 groups created
+in 120 ms
+Watching for changes in /Users/spf13/Code/hugo/docs/content
+Press Ctrl+C to stop
+{{< /nohighlight >}}
 
 Hugo can even run a server and create a site preview at the same time!
 Hugo implements [LiveReload](/extras/livereload/) technology to automatically
 reload any open pages in all JavaScript-enabled browsers, including mobile.
 This is the easiest and most common way to develop a Hugo web site:
 
-    $ hugo server -ws ~/Code/hugo/docs
-    0 draft content
-    0 future content
-    99 pages created
-    0 paginator pages created
-    16 tags created
-    0 groups created
-    in 120 ms
-    Watching for changes in /Users/spf13/Code/hugo/docs/content
-    Serving pages from /Users/spf13/Code/hugo/docs/public
-    Web Server is available at http://localhost:1313/
-    Press Ctrl+C to stop
+{{< nohighlight >}}$ hugo server -ws ~/Code/hugo/docs
+0 draft content
+0 future content
+99 pages created
+0 paginator pages created
+16 tags created
+0 groups created
+in 120 ms
+Watching for changes in /Users/spf13/Code/hugo/docs/content
+Serving pages from /Users/spf13/Code/hugo/docs/public
+Web Server is available at http://localhost:1313/
+Press Ctrl+C to stop
+{{< /nohighlight >}}
 
 
 ## Deploying your web site
@@ -151,11 +154,13 @@ An easy way to work around this is to use different directories for development
 
 To start a server that builds draft content (helpful for editing), you can specify a different destination: the `dev/` dir.
 
-    $ hugo server -wDs ~/Code/hugo/docs -d dev
+{{< nohighlight >}}$ hugo server -wDs ~/Code/hugo/docs -d dev
+{{< /nohighlight >}}
 
 When the content is ready for publishing, use the default `public/` dir:
 
-    $ hugo -s ~/Code/hugo/docs
+{{< nohighlight >}}$ hugo -s ~/Code/hugo/docs
+{{< /nohighlight >}}
 
 This prevents content you're not ready to share yet from accidentally becoming available.
 
@@ -170,9 +175,11 @@ No other web server software (Apache, nginx, IIS...) is necessary.
 
 Here is the command:
 
-    $ hugo server --baseURL=http://yoursite.org/ --port=80 \
-                --appendPort=false \
-                --bind=87.245.198.50
+{{< nohighlight >}}$ hugo server --baseURL=http://yoursite.org/ \
+              --port=80 \
+              --appendPort=false \
+              --bind=87.245.198.50
+{{< /nohighlight >}}
 
 Note the `bind` option, which is the interface to which the server will bind (defaults to `127.0.0.1`, which is fine for most development use cases). Some hosts, like Amazon WS, runs network address translation and it can sometimes be hard to figure out the actual IP address. Using `--bind=0.0.0.0` will bind to all interfaces.
 
index d7a3bc3fab623765217fa1bff61868a82d989b92..10f5d7b40823ec110817373d4549fec09141d053 100644 (file)
@@ -16,39 +16,53 @@ Hugo makes a set of values and methods available on the various Taxonomy structu
 
 A Taxonomy is a `map[string]WeightedPages`.
 
-**.Get(term)** Returns the WeightedPages for a term. <br>
-**.Count(term)** The number of pieces of content assigned to this term.<br>
-**.Alphabetical** Returns an OrderedTaxonomy (slice) ordered by Term. <br>
-**.ByCount** Returns an OrderedTaxonomy (slice) ordered by number of entries. <br>
+.Get(term)
+: Returns the WeightedPages for a term.
 
-## OrderedTaxonomy
+.Count(term)
+: The number of pieces of content assigned to this term.
 
-Since Maps are unordered, an OrderedTaxonomy is a special structure that has a defined order.
+.Alphabetical
+: Returns an OrderedTaxonomy (slice) ordered by Term.
 
-    []struct {
-        Name          string
-        WeightedPages WeightedPages
-    }
+.ByCount
+: Returns an OrderedTaxonomy (slice) ordered by number of entries.
 
-Each element of the slice has:
+## OrderedTaxonomy
 
-**.Term**  The Term used.<br>
-**.WeightedPages**  A slice of Weighted Pages.<br>
-**.Count** The number of pieces of content assigned to this term.<br>
-**.Pages**  All Pages assigned to this term. All [list methods](/templates/list/) are available to this.<br>
+Since Maps are unordered, an OrderedTaxonomy is a special structure that has a defined order.
 
-## WeightedPages
+```go
+[]struct {
+       Name          string
+       WeightedPages WeightedPages
+}
+```
 
-WeightedPages is simply a slice of WeightedPage.
+Each element of the slice has:
 
-    type WeightedPages []WeightedPage
+.Term
+: The Term used.
 
-**.Count(term)** The number of pieces of content assigned to this term.<br>
-**.Pages** Returns a slice of pages, which then can be ordered using any of the [list methods](/templates/list/). <br>
+.WeightedPages
+: A slice of Weighted Pages.
 
+.Count
+: The number of pieces of content assigned to this term.
 
+.Pages
+: All Pages assigned to this term. All [list methods](/templates/list/) are available to this.
 
+## WeightedPages
 
+WeightedPages is simply a slice of WeightedPage.
 
+```go
+type WeightedPages []WeightedPage
+```
 
+.Count(term)
+: The number of pieces of content assigned to this term.
 
+.Pages
+: Returns a slice of pages, which then can be ordered using any of the [list methods](/templates/list/).
index c1799864f7afbe8f5ead1239807055d233ac0928..d1e6a9e89a2cbae8d48d826bd94f974f162f40bc 100644 (file)
@@ -57,15 +57,16 @@ When iterating over content within taxonomies the default sort is first by weigh
 
 Content can be assigned weight for each taxonomy that it's assigned to.
 
-    +++
-    tags = [ "a", "b", "c" ]
-    tags_weight = 22
-    categories = ["d"]
-    title = "foo"
-    categories_weight = 44
-    +++
-    Front Matter with weighted tags and categories
-
+```toml
++++
+tags = [ "a", "b", "c" ]
+tags_weight = 22
+categories = ["d"]
+title = "foo"
+categories_weight = 44
++++
+Front Matter with weighted tags and categories
+```
 
 The convention is `taxonomyname_weight`.
 
index 963daf9dc49262018bcf2661c0c8e6f2eba5af51..35ba3d63e56ba1b1a170e1eeeaf734606ea8a7a1 100644 (file)
@@ -30,10 +30,10 @@ or <code><strong>singular key</strong>: &quot;<em>plural value</em>&quot;</code>
 </thead>
 <tbody>
 <tr valign="top">
-<td><pre><code>[taxonomies]
-  tag = "tags"
-  category = "categories"
-  series = "series"
+<td><pre><code class="language-toml">[taxonomies]
+tag = "tags"
+category = "categories"
+series = "series"
 </code></pre></td>
 <td><pre><code class="language-yaml">taxonomies:
   tag: "tags"
@@ -69,31 +69,35 @@ you will need to pass the taxonomy values through the `urlize` template function
 
 ### Front Matter Example (in TOML)
 
-    +++
-    title = "Hugo: A fast and flexible static site generator"
-    tags = [ "Development", "Go", "fast", "Blogging" ]
-    categories = [ "Development" ]
-    series = [ "Go Web Dev" ]
-    slug = "hugo"
-    project_url = "https://github.com/spf13/hugo"
-    +++
+```toml
++++
+title = "Hugo: A fast and flexible static site generator"
+tags = [ "Development", "Go", "fast", "Blogging" ]
+categories = [ "Development" ]
+series = [ "Go Web Dev" ]
+slug = "hugo"
+project_url = "https://github.com/spf13/hugo"
++++
+```
 
 ### Front Matter Example (in JSON)
 
-    {
-        "title": "Hugo: A fast and flexible static site generator",
-        "tags": [
-            "Development",
-            "Go",
-            "fast",
-            "Blogging"
-        ],
-        "categories" : [
-            "Development"
-        ],
-        "series" : [
-            "Go Web Dev"
-        ],
-        "slug": "hugo",
-        "project_url": "https://github.com/spf13/hugo"
-    }
+```json
+{
+    "title": "Hugo: A fast and flexible static site generator",
+    "tags": [
+        "Development",
+        "Go",
+        "fast",
+        "Blogging"
+    ],
+    "categories" : [
+        "Development"
+    ],
+    "series" : [
+        "Go Web Dev"
+    ],
+    "slug": "hugo",
+    "project_url": "https://github.com/spf13/hugo"
+}
+```
index 1e293a88c18d7ac22cd9835a4ab37434a2a817c2..29f26583271debe1b10b19abacbea16773de61dc 100644 (file)
@@ -51,8 +51,8 @@ e.g.
     // Outputs Tags: tag1, tag2 and tag3
 
 ### dict
-Creates a dictionary (map[string, interface{}), expects parameters added in value:object fasion.
-Invalid combinations like keys that are not strings or uneven number of parameters, will result in an exception thrown
+Creates a dictionary `(map[string, interface{})`, expects parameters added in value:object fasion.
+Invalid combinations like keys that are not strings or uneven number of parameters, will result in an exception thrown.
 Useful for passing maps to partials when adding to a template.
 
 e.g. Pass into "foo.html" a map with the keys "important, content" 
@@ -369,7 +369,7 @@ e.g., `{{chomp "<p>Blockhead</p>\n"}}` → `"<p>Blockhead</p>"`
 Converts the textual representation of the datetime into the other form or returns it of Go `time.Time` type value.
 These are formatted with the layout string.
 
-e.g. `{{ dateFormat "Monday, Jan 2, 2006" "2015-01-21" }}` →"Wednesday, Jan 21, 2015"
+e.g. `{{ dateFormat "Monday, Jan 2, 2006" "2015-01-21" }}` → "Wednesday, Jan 21, 2015"
 
 
 ### highlight
index d04e3c15f1c7dab1e2841cb1857e97f3580a5d67..7aee54039fbdb9aa2fe022d6d4e2f90d7fb6993a 100644 (file)
@@ -54,31 +54,29 @@ Run a few commands to verify that the executable is ready to run and then build
 
 2. At the prompt, type `hugo help` and press the Enter key. You should see output that starts with:
 
-    <pre><code class="hljs no-highlight">A Fast and Flexible Static Site Generator built with love by spf13 and friends in Go. Complete documentation is available at http://gohugo.io
-</code></pre>
+    {{< nohighlight >}}A Fast and Flexible Static Site Generator built with love by spf13 and friends in Go. Complete documentation is available at http://gohugo.io
+{{< /nohighlight >}}
 
     If you do, then the installation is complete. If you don't, double-check the path that you placed the `hugo.exe` file in and that you typed that path correctly when you added it to your PATH variable. If you're still not getting the output, post a note on the Hugo discussion list (in the `Support` topic) with your command and the output.
 
 3. At the prompt, change your directory to the `Sites` directory.
 
-    ```
-C:\Program Files> cd D:\Hugo\Sites
+    {{< nohighlight >}}C:\Program Files> cd D:\Hugo\Sites
 C:\Program Files> D:
 D:\Hugo\Sites>
-```
+{{< /nohighlight >}}
 
 4. Run the command to generate a new site. I'm using `example.com` as the name of the site.
 
-    ```
-D:\Hugo\Sites> hugo new site example.com
-```
+    {{< nohighlight >}}D:\Hugo\Sites> hugo new site example.com
+{{< /nohighlight >}}
 
 5. You should now have a directory at `D:\Hugo\Sites\example.com`.  Change into that directory and list the contents. You should get output similar to the following:
 
-    <pre><code class="hljs no-highlight">D:\Hugo\Sites&gt;cd example.com
+    {{< nohighlight >}}D:\Hugo\Sites&gt;cd example.com
 D:\Hugo\Sites\example.com&gt;dir
 &nbsp;Directory of D:\hugo\sites\example.com
-&nbsp; 
+&nbsp;
 04/13/2015  10:44 PM    &lt;DIR&gt;          .
 04/13/2015  10:44 PM    &lt;DIR&gt;          ..
 04/13/2015  10:44 PM    &lt;DIR&gt;          archetypes
@@ -89,7 +87,7 @@ D:\Hugo\Sites\example.com&gt;dir
 04/13/2015  10:44 PM    &lt;DIR&gt;          static
                1 File(s)             83 bytes
                7 Dir(s)   6,273,331,200 bytes free
-</code></pre>
+{{< /nohighlight >}}
 
 You now have Hugo installed and a site to work with. You need to add a layout (or theme), then create some content. Go to http://gohugo.io/overview/quickstart/ for steps on doing that.
 
index f736ee53a61834e1baaca6d8eda685374ea3722f..e6592c0b46b05dbad9e1da4c327294eb49913591 100644 (file)
@@ -62,59 +62,61 @@ As an example, I was using a custom [`image_tag`](https://github.com/alexandre-n
 
 Jekyll's plugin:
 
-    module Jekyll
-      class ImageTag < Liquid::Tag
-        @url = nil
-        @caption = nil
-        @class = nil
-        @link = nil
-        // Patterns
-        IMAGE_URL_WITH_CLASS_AND_CAPTION =
-        IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK = /(\w+)(\s+)((https?:\/\/|\/)(\S+))(\s+)"(.*?)"(\s+)->((https?:\/\/|\/)(\S+))(\s*)/i
-        IMAGE_URL_WITH_CAPTION = /((https?:\/\/|\/)(\S+))(\s+)"(.*?)"/i
-        IMAGE_URL_WITH_CLASS = /(\w+)(\s+)((https?:\/\/|\/)(\S+))/i
-        IMAGE_URL = /((https?:\/\/|\/)(\S+))/i
-        def initialize(tag_name, markup, tokens)
-          super
-          if markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK
-            @class   = $1
-            @url     = $3
-            @caption = $7
-            @link = $9
-          elsif markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION
-            @class   = $1
-            @url     = $3
-            @caption = $7
-          elsif markup =~ IMAGE_URL_WITH_CAPTION
-            @url     = $1
-            @caption = $5
-          elsif markup =~ IMAGE_URL_WITH_CLASS
-            @class = $1
-            @url   = $3
-          elsif markup =~ IMAGE_URL
-            @url = $1
-          end
-        end
-        def render(context)
-          if @class
-            source = "<figure class='#{@class}'>"
-          else
-            source = "<figure>"
-          end
-          if @link
-            source += "<a href=\"#{@link}\">"
-          end
-          source += "<img src=\"#{@url}\">"
-          if @link
-            source += "</a>"
-          end
-          source += "<figcaption>#{@caption}</figcaption>" if @caption
-          source += "</figure>"
-          source
-        end
+```ruby
+module Jekyll
+  class ImageTag < Liquid::Tag
+    @url = nil
+    @caption = nil
+    @class = nil
+    @link = nil
+    // Patterns
+    IMAGE_URL_WITH_CLASS_AND_CAPTION =
+    IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK = /(\w+)(\s+)((https?:\/\/|\/)(\S+))(\s+)"(.*?)"(\s+)->((https?:\/\/|\/)(\S+))(\s*)/i
+    IMAGE_URL_WITH_CAPTION = /((https?:\/\/|\/)(\S+))(\s+)"(.*?)"/i
+    IMAGE_URL_WITH_CLASS = /(\w+)(\s+)((https?:\/\/|\/)(\S+))/i
+    IMAGE_URL = /((https?:\/\/|\/)(\S+))/i
+    def initialize(tag_name, markup, tokens)
+      super
+      if markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK
+        @class   = $1
+        @url     = $3
+        @caption = $7
+        @link = $9
+      elsif markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION
+        @class   = $1
+        @url     = $3
+        @caption = $7
+      elsif markup =~ IMAGE_URL_WITH_CAPTION
+        @url     = $1
+        @caption = $5
+      elsif markup =~ IMAGE_URL_WITH_CLASS
+        @class = $1
+        @url   = $3
+      elsif markup =~ IMAGE_URL
+        @url = $1
       end
     end
-    Liquid::Template.register_tag('image', Jekyll::ImageTag)
+    def render(context)
+      if @class
+        source = "<figure class='#{@class}'>"
+      else
+        source = "<figure>"
+      end
+      if @link
+        source += "<a href=\"#{@link}\">"
+      end
+      source += "<img src=\"#{@url}\">"
+      if @link
+        source += "</a>"
+      end
+      source += "<figcaption>#{@caption}</figcaption>" if @caption
+      source += "</figure>"
+      source
+    end
+  end
+end
+Liquid::Template.register_tag('image', Jekyll::ImageTag)
+```
 
 is written as this Hugo shortcode:
 
diff --git a/docs/layouts/shortcodes/nohighlight.html b/docs/layouts/shortcodes/nohighlight.html
new file mode 100644 (file)
index 0000000..d9cb5f3
--- /dev/null
@@ -0,0 +1 @@
+<pre><code class="hljs nohighlight">{{ .Inner }}</code></pre>