From 5ea8b54d903b2ea21020db51ec06c150f95fabfc Mon Sep 17 00:00:00 2001 From: David Haynes Date: Thu, 25 May 2017 21:32:36 -0400 Subject: [PATCH] hugo: omit subject - Remove uses of "your" and "you" --- pages/common/hugo.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/hugo.md b/pages/common/hugo.md index dd54394300..5aa06fa371 100644 --- a/pages/common/hugo.md +++ b/pages/common/hugo.md @@ -6,7 +6,7 @@ `hugo new site {{path/to/site}}` -- Create a new Hugo theme (you may also download one from https://themes.gohugo.io/): +- Create a new Hugo theme (themes may also be downloaded from https://themes.gohugo.io/): `hugo new theme {{theme_name}}` @@ -14,18 +14,18 @@ `hugo new {{section_name}}/{{filename}}` -- Build your site to the `./public/` directory: +- Build a site to the `./public/` directory: `hugo` -- Build your site including pages that are marked as a "draft": +- Build a site including pages that are marked as a "draft": `hugo --buildDrafts` -- Build your site to a given directory: +- Build a site to a given directory: `hugo --destination {{path/to/destination}}` -- Build your site, start up a webserver to serve it, and automatically reload when pages are edited: +- Build a site, start up a webserver to serve it, and automatically reload when pages are edited: `hugo server`