Docs: Change the pseudo-absolute path to a relative one
authorAnthony Fok <foka@debian.org>
Sat, 9 Jan 2016 18:57:14 +0000 (11:57 -0700)
committerAnthony Fok <foka@debian.org>
Sat, 9 Jan 2016 18:57:14 +0000 (11:57 -0700)
See #1765

docs/content/extras/builders.md
docs/content/overview/quickstart.md

index d3358c306c20fdaf7a740e4a5f54859d4399ae57..50508b329ed9fae14e1a4c9c16af414541ab2721 100644 (file)
@@ -19,7 +19,8 @@ started.
 
 Want to get a site built quickly?
 
-    $ hugo new site /path/to/site
+{{< nohighlight >}}$ hugo new site <i>path/to/site</i>
+{{< /nohighlight >}}
 
 Hugo will create all the needed directories and files to get started
 quickly.
index 9c0dcd9df0903b5e544223b1969eda92a53653f3..506160afd90d2be9c5728f27ac582d7d6e155033 100644 (file)
@@ -1,5 +1,5 @@
 ---
-lastmod: 2015-11-29
+lastmod: 2016-01-09
 date: 2013-07-01
 linktitle: Quickstart
 menu:
@@ -28,20 +28,23 @@ More complete instructions are available at [Installing Hugo](/overview/installi
 
 Hugo has the ability to create a skeleton site:
 
-    $ hugo new site /path/to/site
+{{< nohighlight >}}$ hugo new site <i>path/to/site</i>
+{{< /nohighlight >}}
 
 For the rest of the operations, we will be executing all commands from within the site directory.
 
-    $ cd /path/to/site
+{{< nohighlight >}}$ cd <i>path/to/site</i>
+{{< /nohighlight >}}
 
 The new site will have the following structure
 
-      ▸ archetypes/
-      ▸ content/
-      ▸ data/
-      ▸ layouts/
-      ▸ static/
-        config.toml
+{{< nohighlight >}}  ▸ archetypes/
+  ▸ content/
+  ▸ data/
+  ▸ layouts/
+  ▸ static/
+    config.toml
+{{< /nohighlight >}}
 
 Currently the site doesn’t have any content, nor is it configured.