summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:54:42 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:54:42 +0200
commit715ff1f87406edf27738c8c0f52fe185fa974ee8 (patch)
tree28d951ec023276d5f7e736d23ba5d3defe780a79
parentc17ad675e8fcdb2db40fc50816b8f016bc14294c (diff)
docs: Update content references to gohugoio/hugo
-rw-r--r--docs/content/community/contributing.md14
-rw-r--r--docs/content/community/mailing-list.md2
-rw-r--r--docs/content/community/press.md2
-rw-r--r--docs/content/content/archetypes.md4
-rw-r--r--docs/content/content/supported-formats.md2
-rw-r--r--docs/content/extras/menus.md2
-rw-r--r--docs/content/extras/output-formats.md2
-rw-r--r--docs/content/meta/roadmap.md16
-rw-r--r--docs/content/overview/installing.md10
-rw-r--r--docs/content/overview/introduction.md2
-rw-r--r--docs/content/overview/quickstart.md2
-rw-r--r--docs/content/release-notes/0.20.3-relnotes.md8
-rw-r--r--docs/content/release-notes/0.20.4-relnotes.md10
-rw-r--r--docs/content/release-notes/0.20.5-relnotes.md2
-rw-r--r--docs/content/release-notes/0.20.6-relnotes.md10
-rw-r--r--docs/content/release-notes/0.21-relnotes.md92
-rw-r--r--docs/content/release-notes/0.22-relnotes.md62
-rw-r--r--docs/content/release-notes/0.22.1-relnotes.md12
-rw-r--r--docs/content/release-notes/release-notes.md18
-rw-r--r--docs/content/showcase/hugo.md2
-rw-r--r--docs/content/taxonomies/usage.md4
-rw-r--r--docs/content/templates/ace.md2
-rw-r--r--docs/content/templates/functions.md4
-rw-r--r--docs/content/themes/installing.md6
-rw-r--r--docs/content/tools/_index.md2
-rw-r--r--docs/content/troubleshooting/strange-eof-error.md2
-rw-r--r--docs/content/tutorials/creating-a-new-theme.md2
-rw-r--r--docs/content/tutorials/hosting-on-bitbucket.md2
-rw-r--r--docs/content/tutorials/how-to-contribute-to-hugo.md22
-rw-r--r--docs/content/tutorials/installing-on-mac.md8
-rw-r--r--docs/content/tutorials/installing-on-windows.md4
-rw-r--r--docs/temp/0.22.1-relnotes.md12
32 files changed, 172 insertions, 172 deletions
diff --git a/docs/content/community/contributing.md b/docs/content/community/contributing.md
index eaee9113a..44518d70f 100644
--- a/docs/content/community/contributing.md
+++ b/docs/content/community/contributing.md
@@ -13,7 +13,7 @@ title: Contributing to Hugo
weight: 30
---
-All contributions to Hugo are welcome. Whether you want to scratch an itch or simply contribute to the project, feel free to pick something from the [roadmap]({{< relref "meta/roadmap.md" >}}) or contact the dev team via the [Forums](https://discuss.gohugo.io/) or [Gitter](https://gitter.im/spf13/hugo) about what may make sense to do next.
+All contributions to Hugo are welcome. Whether you want to scratch an itch or simply contribute to the project, feel free to pick something from the [roadmap]({{< relref "meta/roadmap.md" >}}) or contact the dev team via the [Forums](https://discuss.gohugo.io/) or [Gitter](https://gitter.im/gohugoio/hugo) about what may make sense to do next.
You should fork the project and make your changes. *We encourage pull requests to discuss code changes.*
@@ -23,7 +23,7 @@ When you're ready to create a pull request, be sure to:
* Have test cases for the new code. If you have questions about how to do it, please ask in your pull request.
* Run `go fmt`.
* Squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
- * Run `make check` and ensure it succeeds. [Travis CI](https://travis-ci.org/spf13/hugo) and [Appveyor](https://ci.appveyor.com/project/spf13/hugo) will runs these checks and fail the build if `make check` fails.
+ * Run `make check` and ensure it succeeds. [Travis CI](https://travis-ci.org/gohugoio/hugo) and [Appveyor](https://ci.appveyor.com/project/gohugoio/hugo) will runs these checks and fail the build if `make check` fails.
## Contribution Overview
@@ -41,16 +41,16 @@ You **must use govendor** to fetch Hugo's dependencies.
## Fetch the Sources
go get github.com/kardianos/govendor
- govendor get github.com/spf13/hugo
+ govendor get github.com/gohugoio/hugo
## Running Hugo
- cd $HOME/go/src/github.com/spf13/hugo
+ cd $HOME/go/src/github.com/gohugoio/hugo
go run main.go
## Building Hugo
- cd $HOME/go/src/github.com/spf13/hugo
+ cd $HOME/go/src/github.com/gohugoio/hugo
make build
# or to install to $HOME/go/bin:
make install
@@ -100,11 +100,11 @@ Check a last time that everything works as expected. Start Hugo's built-in serve
hugo server
-If everything looks fine, we are ready to commit your additions. For the sake of best practices, please make sure that your commit follows our [code contribution guideline](https://github.com/spf13/hugo#code-contribution-guideline).
+If everything looks fine, we are ready to commit your additions. For the sake of best practices, please make sure that your commit follows our [code contribution guideline](https://github.com/gohugoio/hugo#code-contribution-guideline).
git commit -m"docs: Add example.com to the showcase"
-Last but not least, we're ready to create a [pull request](https://github.com/spf13/hugo/compare).
+Last but not least, we're ready to create a [pull request](https://github.com/gohugoio/hugo/compare).
Don't forget to accept the contributor license agreement. Click on the yellow badge in the automatically added comment in the pull request.
diff --git a/docs/content/community/mailing-list.md b/docs/content/community/mailing-list.md
index e1c190220..60c680089 100644
--- a/docs/content/community/mailing-list.md
+++ b/docs/content/community/mailing-list.md
@@ -48,4 +48,4 @@ https://groups.google.com/forum/#!forum/golang-nuts
### GitHub Issues
-https://github.com/spf13/hugo/issues
+https://github.com/gohugoio/hugo/issues
diff --git a/docs/content/community/press.md b/docs/content/community/press.md
index c4b79df1a..89000cf8b 100644
--- a/docs/content/community/press.md
+++ b/docs/content/community/press.md
@@ -9,7 +9,7 @@ weight: 20
### Help keep this list up to date
-Know of a post, article or tutorial on Hugo? [Add it to this list](https://github.com/spf13/hugo/edit/master/docs/content/community/press.md).
+Know of a post, article or tutorial on Hugo? [Add it to this list](https://github.com/gohugoio/hugo/edit/master/docs/content/community/press.md).
## Press and Articles
diff --git a/docs/content/content/archetypes.md b/docs/content/content/archetypes.md
index 580783dec..88efdbd0f 100644
--- a/docs/content/content/archetypes.md
+++ b/docs/content/content/archetypes.md
@@ -106,7 +106,7 @@ title = "my archetype example"
As we can see, the file contains the `title` and `date` property that Hugo created for us, along with the front matter that we defined in the `archetypes/default.md` file.
-You'll also notice that the fields have been sorted into alphabetical order. This is an unintentional side-effect that stems from the underlying code libraries that Hugo relies upon. It is, however, [a known issue that is actively being discussed](https://github.com/spf13/hugo/issues/452).
+You'll also notice that the fields have been sorted into alphabetical order. This is an unintentional side-effect that stems from the underlying code libraries that Hugo relies upon. It is, however, [a known issue that is actively being discussed](https://github.com/gohugoio/hugo/issues/452).
## Section Archetypes
@@ -327,4 +327,4 @@ It's a subtle yet important detail to remember.
## Notes
-* Prior to Hugo v0.13, some users received [an "EOF" error when using archetypes](https://github.com/spf13/hugo/issues/776), related to what text editor they used to create the archetype. As of Hugo v0.13, this error has been [resolved](https://github.com/spf13/hugo/pull/785).
+* Prior to Hugo v0.13, some users received [an "EOF" error when using archetypes](https://github.com/gohugoio/hugo/issues/776), related to what text editor they used to create the archetype. As of Hugo v0.13, this error has been [resolved](https://github.com/gohugoio/hugo/pull/785).
diff --git a/docs/content/content/supported-formats.md b/docs/content/content/supported-formats.md
index 1b3033596..3fc905d6d 100644
--- a/docs/content/content/supported-formats.md
+++ b/docs/content/content/supported-formats.md
@@ -13,7 +13,7 @@ weight: 15
toc: true
---
- Since 0.14, Hugo has defined a new concept called _external helpers_. It means that you can write your content using Asciidoc[tor], reStructuredText or Org-Mode. If you have files with associated extensions ([details](https://github.com/spf13/hugo/blob/77c60a3440806067109347d04eb5368b65ea0fe8/helpers/general.go#L65)), then Hugo will call external commands to generate the content (the exception being Org-Mode content, which is parsed natively).
+ Since 0.14, Hugo has defined a new concept called _external helpers_. It means that you can write your content using Asciidoc[tor], reStructuredText or Org-Mode. If you have files with associated extensions ([details](https://github.com/gohugoio/hugo/blob/77c60a3440806067109347d04eb5368b65ea0fe8/helpers/general.go#L65)), then Hugo will call external commands to generate the content (the exception being Org-Mode content, which is parsed natively).
This means that you will have to install the associated tool on your machine to be able to use those formats.
diff --git a/docs/content/extras/menus.md b/docs/content/extras/menus.md
index d083810cc..84b59e831 100644
--- a/docs/content/extras/menus.md
+++ b/docs/content/extras/menus.md
@@ -186,7 +186,7 @@ The following is an example:
{{end}}
</li>
{{end}}
- <li> <a href="https://github.com/spf13/hugo/issues" target="blank">Questions and Issues</a> </li>
+ <li> <a href="https://github.com/gohugoio/hugo/issues" target="blank">Questions and Issues</a> </li>
<li> <a href="#" target="blank">Edit this Page</a> </li>
</ul>
<!-- sidebar menu end-->
diff --git a/docs/content/extras/output-formats.md b/docs/content/extras/output-formats.md
index b3e87919f..8ebc55b69 100644
--- a/docs/content/extras/output-formats.md
+++ b/docs/content/extras/output-formats.md
@@ -177,7 +177,7 @@ The partial below is a plain text template (Outpuf Format is `CSV`, and since th
{{ partial "mytextpartial.csv" . }}
```
-Also note that plain text partials can currently only be included in plain text templates, and vice versa. See [this issue](https://github.com/spf13/hugo/issues/3273) for some background.
+Also note that plain text partials can currently only be included in plain text templates, and vice versa. See [this issue](https://github.com/gohugoio/hugo/issues/3273) for some background.
diff --git a/docs/content/meta/roadmap.md b/docs/content/meta/roadmap.md
index a8ab6e348..13395fed4 100644
--- a/docs/content/meta/roadmap.md
+++ b/docs/content/meta/roadmap.md
@@ -18,16 +18,16 @@ In no particular order, here is what we are working on:
* Even easier deployment to S3, SSH, GitHub, rsync. Give the [tools section](https://gohugo.io/tools/#deployment) a shot or read one of the related tutorials.
* Import from other website systems. There are already existing [migration tools](https://gohugo.io/tools/#migration) but they don't cover all major platforms.
* An interactive web based editor (See https://discuss.gohugo.io/t/web-based-editor/155)
- * Additional [themes](https://github.com/spf13/hugoThemes) (always on-going, contributions welcome!)
+ * Additional [themes](https://github.com/gohugoio/hugoThemes) (always on-going, contributions welcome!)
* Dynamic image resizing via shortcodes ([#1014][])
* Native support for additional content formats (AsciiDoc [#1435][], reST [#1436][])
* And, last but not least, ***Your best ideas***!
-[#100]: https://github.com/spf13/hugo/issues/100 "hugo import from wordpress · Issue #100 · spf13/hugo"
-[#101]: https://github.com/spf13/hugo/issues/101 "hugo import from jekyll · Issue #101 · spf13/hugo"
-[#1435]: https://github.com/spf13/hugo/issues/1435 "Add support for native Go implementation of AsciiDoc · Issue #1435 · spf13/hugo"
-[#1436]: https://github.com/spf13/hugo/issues/1436 "Add support for native Go implementation of reStructuredText (reST) · Issue #1436 · spf13/hugo"
-[#1014]: https://github.com/spf13/hugo/issues/1014 "Image Resizing and Cropping · Issue #1014 · spf13/hugo"
-[#98]: https://github.com/spf13/hugo/issues/98 "Add support for related content · Issue #98 · spf13/hugo"
+[#100]: https://github.com/gohugoio/hugo/issues/100 "hugo import from wordpress · Issue #100 · gohugoio/hugo"
+[#101]: https://github.com/gohugoio/hugo/issues/101 "hugo import from jekyll · Issue #101 · gohugoio/hugo"
+[#1435]: https://github.com/gohugoio/hugo/issues/1435 "Add support for native Go implementation of AsciiDoc · Issue #1435 · gohugoio/hugo"
+[#1436]: https://github.com/gohugoio/hugo/issues/1436 "Add support for native Go implementation of reStructuredText (reST) · Issue #1436 · gohugoio/hugo"
+[#1014]: https://github.com/gohugoio/hugo/issues/1014 "Image Resizing and Cropping · Issue #1014 · gohugoio/hugo"
+[#98]: https://github.com/gohugoio/hugo/issues/98 "Add support for related content · Issue #98 · gohugoio/hugo"
-> Feel free to [contribute]({{< relref "tutorials/how-to-contribute-to-hugo.md" >}}) or open a [new issue](https://github.com/spf13/hugo/issues/new) if you have an idea for a new feature.)
+> Feel free to [contribute]({{< relref "tutorials/how-to-contribute-to-hugo.md" >}}) or open a [new issue](https://github.com/gohugoio/hugo/issues/new) if you have an idea for a new feature.)
diff --git a/docs/content/overview/installing.md b/docs/content/overview/installing.md
index ce6a882f1..1249d4630 100644
--- a/docs/content/overview/installing.md
+++ b/docs/content/overview/installing.md
@@ -15,7 +15,7 @@ weight: 20
Hugo is written in [Go][] with support for multiple platforms.
-The latest release can be found at [Hugo Releases](https://github.com/spf13/hugo/releases).
+The latest release can be found at [Hugo Releases](https://github.com/gohugoio/hugo/releases).
We currently provide pre-built binaries for
<i class="fa fa-windows"></i>&nbsp;Windows,
<i class="fa fa-linux"></i>&nbsp;Linux,
@@ -28,7 +28,7 @@ Hugo may also be compiled from source wherever the Go compiler tool chain can ru
## Installing Hugo (binary)
Installation is very easy. Simply download the appropriate version for your
-platform from [Hugo Releases](https://github.com/spf13/hugo/releases).
+platform from [Hugo Releases](https://github.com/gohugoio/hugo/releases).
Once downloaded it can be run from anywhere. You don't need to install
it into a global location. This works well for shared hosts and other systems
where you don't have a privileged account.
@@ -97,7 +97,7 @@ In any of the [Linux distributions that support snaps](http://snapcraft.io/docs/
snap install hugo
> Note: Hugo-as-a-snap can write only inside the user’s `$HOME` directory—and gvfs-mounted directories owned by the user—because of Snaps’ confinement and security model.
-> More information is also available [in this related GitHub issue](https://github.com/spf13/hugo/issues/3143).
+> More information is also available [in this related GitHub issue](https://github.com/gohugoio/hugo/issues/3143).
## Installing from source
@@ -116,10 +116,10 @@ You **must use govendor** to fetch Hugo's dependencies.
### Fetch from GitHub
go get github.com/kardianos/govendor
- govendor get github.com/spf13/hugo
+ govendor get github.com/gohugoio/hugo
`govendor get` will fetch Hugo and all its dependent libraries to
-`$HOME/go/src/github.com/spf13/hugo`, and compile everything into a final `hugo`
+`$HOME/go/src/github.com/gohugoio/hugo`, and compile everything into a final `hugo`
(or `hugo.exe`) executable, which you will find sitting inside
`$HOME/go/bin/`, all ready to go!
diff --git a/docs/content/overview/introduction.md b/docs/content/overview/introduction.md
index a974542f0..305ddce37 100644
--- a/docs/content/overview/introduction.md
+++ b/docs/content/overview/introduction.md
@@ -193,5 +193,5 @@ as I have writing it.
* [Install Hugo](/overview/installing/)
* [Quick start](/overview/quickstart/)
* [Join the Mailing List](/community/mailing-list/)
- * [Star us on GitHub](https://github.com/spf13/hugo)
+ * [Star us on GitHub](https://github.com/gohugoio/hugo)
* [Discussion Forum](http://discuss.gohugo.io/)
diff --git a/docs/content/overview/quickstart.md b/docs/content/overview/quickstart.md
index a7902cf65..7340a4957 100644
--- a/docs/content/overview/quickstart.md
+++ b/docs/content/overview/quickstart.md
@@ -22,7 +22,7 @@ In this quickstart, we will build an online bookshelf that will list books and t
## Step 1. Install Hugo
-Go to [Hugo Releases](https://github.com/spf13/hugo/releases) and download the
+Go to [Hugo Releases](https://github.com/gohugoio/hugo/releases) and download the
appropriate version for your OS and architecture.
Save the main executable as `hugo` (or `hugo.exe` on Windows) somewhere in your `PATH` as we will be using it in the next step.
diff --git a/docs/content/release-notes/0.20.3-relnotes.md b/docs/content/release-notes/0.20.3-relnotes.md
index 954a4f514..5ab476ee6 100644
--- a/docs/content/release-notes/0.20.3-relnotes.md
+++ b/docs/content/release-notes/0.20.3-relnotes.md
@@ -10,14 +10,14 @@ This is a bug-fix relase with one important fix. But it also adds some harness a
Hugo now has:
-* 16619+ [stars](https://github.com/spf13/hugo/stargazers)
-* 458+ [contributors](https://github.com/spf13/hugo/graphs/contributors)
+* 16619+ [stars](https://github.com/gohugoio/hugo/stargazers)
+* 458+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
* 156+ [themes](http://themes.gohugo.io/)
## Enhancement
-* Automate the Hugo release process [550eba64](https://github.com/spf13/hugo/commit/550eba64705725eb54fdb1042e0fb4dbf6f29fd0) [@bep](https://github.com/bep) [#3358](https://github.com/spf13/hugo/issues/3358)
+* Automate the Hugo release process [550eba64](https://github.com/gohugoio/hugo/commit/550eba64705725eb54fdb1042e0fb4dbf6f29fd0) [@bep](https://github.com/bep) [#3358](https://github.com/gohugoio/hugo/issues/3358)
## Fix
-* Fix handling of zero-length files [9bf5c381](https://github.com/spf13/hugo/commit/9bf5c381b6b3e69d4d8dbfd7a40074ac44792bbf) [@bep](https://github.com/bep) [#3355](https://github.com/spf13/hugo/issues/3355)
+* Fix handling of zero-length files [9bf5c381](https://github.com/gohugoio/hugo/commit/9bf5c381b6b3e69d4d8dbfd7a40074ac44792bbf) [@bep](https://github.com/bep) [#3355](https://github.com/gohugoio/hugo/issues/3355)
diff --git a/docs/content/release-notes/0.20.4-relnotes.md b/docs/content/release-notes/0.20.4-relnotes.md
index d7a18963b..4ddc78c8e 100644
--- a/docs/content/release-notes/0.20.4-relnotes.md
+++ b/docs/content/release-notes/0.20.4-relnotes.md
@@ -11,15 +11,15 @@ This is the second bug-fix relase of the day, fixing a couple of issues related
Hugo now has:
-* 16626+ [stars](https://github.com/spf13/hugo/stargazers)
-* 457+ [contributors](https://github.com/spf13/hugo/graphs/contributors)
+* 16626+ [stars](https://github.com/gohugoio/hugo/stargazers)
+* 457+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
* 156+ [themes](http://themes.gohugo.io/)
## Fixes
-* Fix statically linked binaries [275bcf56](https://github.com/spf13/hugo/commit/275bcf566c7cb72367d4423cf4810319311ff680) [@munnerz](https://github.com/munnerz) [#3382](https://github.com/spf13/hugo/issues/3382)
-* Filename change in Hugo 0.20.3 binaries [#3385](https://github.com/spf13/hugo/issues/3385)
-* Fix version calculation [cb3c6b6f](https://github.com/spf13/hugo/commit/cb3c6b6f7670f85189a4a3637e7132901d1ed6e9) [@bep](https://github.com/bep)
+* Fix statically linked binaries [275bcf56](https://github.com/gohugoio/hugo/commit/275bcf566c7cb72367d4423cf4810319311ff680) [@munnerz](https://github.com/munnerz) [#3382](https://github.com/gohugoio/hugo/issues/3382)
+* Filename change in Hugo 0.20.3 binaries [#3385](https://github.com/gohugoio/hugo/issues/3385)
+* Fix version calculation [cb3c6b6f](https://github.com/gohugoio/hugo/commit/cb3c6b6f7670f85189a4a3637e7132901d1ed6e9) [@bep](https://github.com/bep)
diff --git a/docs/content/release-notes/0.20.5-relnotes.md b/docs/content/release-notes/0.20.5-relnotes.md
index 7689e3da0..4a848169e 100644
--- a/docs/content/release-notes/0.20.5-relnotes.md
+++ b/docs/content/release-notes/0.20.5-relnotes.md
@@ -6,4 +6,4 @@ title: 0.20.5
-This is a bug-fix relase which fixes the version number of `0.20.4` (which wrongly shows up as `0.21-DEV`) ([#3388](https://github.com/spf13/hugo/issues/3388)). \ No newline at end of file
+This is a bug-fix relase which fixes the version number of `0.20.4` (which wrongly shows up as `0.21-DEV`) ([#3388](https://github.com/gohugoio/hugo/issues/3388)). \ No newline at end of file
diff --git a/docs/content/release-notes/0.20.6-relnotes.md b/docs/content/release-notes/0.20.6-relnotes.md
index b07dde609..fe6a2b273 100644
--- a/docs/content/release-notes/0.20.6-relnotes.md
+++ b/docs/content/release-notes/0.20.6-relnotes.md
@@ -10,15 +10,15 @@ There have been some [shouting on discuss.gohugo.io](https://discuss.gohugo.io/t
Hugo now has:
-* 16675+ [stars](https://github.com/spf13/hugo/stargazers)
-* 456+ [contributors](https://github.com/spf13/hugo/graphs/contributors)
+* 16675+ [stars](https://github.com/gohugoio/hugo/stargazers)
+* 456+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
* 156+ [themes](http://themes.gohugo.io/)
## Fixes
-* Avoid index.md in /index/index.html [#3396](https://github.com/spf13/hugo/issues/3396)
-* Make missing GitInfo a WARNING [b30ca4be](https://github.com/spf13/hugo/commit/b30ca4bec811dbc17e9fd05925544db2b75e0e49) [@bep](https://github.com/bep) [#3376](https://github.com/spf13/hugo/issues/3376)
-* Fix some of the fpm fields for deb [3bd1d057](https://github.com/spf13/hugo/commit/3bd1d0571d5f2f6bf0dc8f90a8adf2dbfcb2fdfd) [@anthonyfok](https://github.com/anthonyfok)
+* Avoid index.md in /index/index.html [#3396](https://github.com/gohugoio/hugo/issues/3396)
+* Make missing GitInfo a WARNING [b30ca4be](https://github.com/gohugoio/hugo/commit/b30ca4bec811dbc17e9fd05925544db2b75e0e49) [@bep](https://github.com/bep) [#3376](https://github.com/gohugoio/hugo/issues/3376)
+* Fix some of the fpm fields for deb [3bd1d057](https://github.com/gohugoio/hugo/commit/3bd1d0571d5f2f6bf0dc8f90a8adf2dbfcb2fdfd) [@anthonyfok](https://github.com/anthonyfok)
diff --git a/docs/content/release-notes/0.21-relnotes.md b/docs/content/release-notes/0.21-relnotes.md
index 4fe4e911b..2f393d20f 100644
--- a/docs/content/release-notes/0.21-relnotes.md
+++ b/docs/content/release-notes/0.21-relnotes.md
@@ -4,100 +4,100 @@ date: 2017-05-22
title: 0.21
---
- Hugo `0.21` brings full support for shortcodes per [Output Format](https://gohugo.io/extras/output-formats/) ([#3220](https://github.com/spf13/hugo/issues/3220)), the last vital piece of that puzzle. This is especially useful for `Google AMP` with its many custom media tags.
+ Hugo `0.21` brings full support for shortcodes per [Output Format](https://gohugo.io/extras/output-formats/) ([#3220](https://github.com/gohugoio/hugo/issues/3220)), the last vital piece of that puzzle. This is especially useful for `Google AMP` with its many custom media tags.
This release represents **126 contributions by 29 contributors** to the main Hugo code base. Since last main release Hugo has **gained 850 stars and 7 additional themes**.
Hugo now has:
-* 17156+ [stars](https://github.com/spf13/hugo/stargazers)
-* 457+ [contributors](https://github.com/spf13/hugo/graphs/contributors)
+* 17156+ [stars](https://github.com/gohugoio/hugo/stargazers)
+* 457+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
* 163+ [themes](http://themes.gohugo.io/)
[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@moorereason](https://github.com/moorereason), [@bogem](https://github.com/bogem), and [@munnerz](https://github.com/munnerz) for their ongoing contributions. And as always a big thanks to [@digitalcraftsman](https://github.com/digitalcraftsman) for his relentless work on keeping the documentation and the themes site in pristine condition.
## Other Highlights
-On a more technical side, [@moorereason](https://github.com/moorereason) and [@bep](https://github.com/bep) have introduced namespaces for Hugo's many template funcs ([#3042](https://github.com/spf13/hugo/issues/3042) ). There are so many now, and adding more into that big pile would be a sure path toward losing control. Now they are nicely categorised into namespaces with its own tests and examples, with an API that the documentation site can use to make sure it is correct and up-to-date.
+On a more technical side, [@moorereason](https://github.com/moorereason) and [@bep](https://github.com/bep) have introduced namespaces for Hugo's many template funcs ([#3042](https://github.com/gohugoio/hugo/issues/3042) ). There are so many now, and adding more into that big pile would be a sure path toward losing control. Now they are nicely categorised into namespaces with its own tests and examples, with an API that the documentation site can use to make sure it is correct and up-to-date.
## Notes
-* The deprecated `.Extension`, `.Now` and `.TargetPath` will now `ERROR` [544f0a63](https://github.com/spf13/hugo/commit/544f0a6394b0e085d355e8217fc5bb3d96c12a98) [@bep](https://github.com/bep)
-* The config settings and flags `disable404`, `disableRSS`, `disableSitemap`, `disableRobotsTXT` are now deprecated. Use `disableKinds`. [5794a265](https://github.com/spf13/hugo/commit/5794a265b41ffdeebfd8485eecf65cf4088d49d6) [@bep](https://github.com/bep) [#3345](https://github.com/spf13/hugo/issues/3345)
+* The deprecated `.Extension`, `.Now` and `.T