Skip to content

Commit 715ff1f

Browse files
committed
docs: Update content references to gohugoio/hugo
1 parent c17ad67 commit 715ff1f

32 files changed

+172
-172
lines changed

‎docs/content/community/contributing.md‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ title: Contributing to Hugo
1313
weight: 30
1414
---
1515

16-
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.
16+
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.
1717

1818
You should fork the project and make your changes. *We encourage pull requests to discuss code changes.*
1919

@@ -23,7 +23,7 @@ When you're ready to create a pull request, be sure to:
2323
* Have test cases for the new code. If you have questions about how to do it, please ask in your pull request.
2424
* Run `go fmt`.
2525
* Squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
26-
* 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.
26+
* 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.
2727

2828
## Contribution Overview
2929

@@ -41,16 +41,16 @@ You **must use govendor** to fetch Hugo's dependencies.
4141
## Fetch the Sources
4242

4343
go get github.com/kardianos/govendor
44-
govendor get github.com/spf13/hugo
44+
govendor get github.com/gohugoio/hugo
4545

4646
## Running Hugo
4747

48-
cd $HOME/go/src/github.com/spf13/hugo
48+
cd $HOME/go/src/github.com/gohugoio/hugo
4949
go run main.go
5050

5151
## Building Hugo
5252

53-
cd $HOME/go/src/github.com/spf13/hugo
53+
cd $HOME/go/src/github.com/gohugoio/hugo
5454
make build
5555
# or to install to $HOME/go/bin:
5656
make install
@@ -100,11 +100,11 @@ Check a last time that everything works as expected. Start Hugo's built-in serve
100100

101101
hugo server
102102

103-
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).
103+
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).
104104

105105
git commit -m"docs: Add example.com to the showcase"
106106

107-
Last but not least, we're ready to create a [pull request](https://github.com/spf13/hugo/compare).
107+
Last but not least, we're ready to create a [pull request](https://github.com/gohugoio/hugo/compare).
108108

109109
Don't forget to accept the contributor license agreement. Click on the yellow badge in the automatically added comment in the pull request.
110110

‎docs/content/community/mailing-list.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ https://groups.google.com/forum/#!forum/golang-nuts
4848

4949
### GitHub Issues
5050

51-
https://github.com/spf13/hugo/issues
51+
https://github.com/gohugoio/hugo/issues

‎docs/content/community/press.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 20
99

1010
### Help keep this list up to date
1111

12-
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).
12+
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).
1313

1414
## Press and Articles
1515

‎docs/content/content/archetypes.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ title = "my archetype example"
106106

107107
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.
108108

109-
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).
109+
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).
110110

111111
## Section Archetypes
112112

@@ -327,4 +327,4 @@ It's a subtle yet important detail to remember.
327327

328328
## Notes
329329

330-
* 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).
330+
* 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).

‎docs/content/content/supported-formats.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ weight: 15
1313
toc: true
1414
---
1515

16-
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).
16+
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).
1717

1818
This means that you will have to install the associated tool on your machine to be able to use those formats.
1919

‎docs/content/extras/menus.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ The following is an example:
186186
{{end}}
187187
</li>
188188
{{end}}
189-
<li> <a href="https://github.com/spf13/hugo/issues" target="blank">Questions and Issues</a> </li>
189+
<li> <a href="https://github.com/gohugoio/hugo/issues" target="blank">Questions and Issues</a> </li>
190190
<li> <a href="#" target="blank">Edit this Page</a> </li>
191191
</ul>
192192
<!-- sidebar menu end-->

‎docs/content/extras/output-formats.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ The partial below is a plain text template (Outpuf Format is `CSV`, and since th
177177
{{ partial "mytextpartial.csv" . }}
178178
```
179179

180-
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.
180+
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.
181181

182182

183183

‎docs/content/meta/roadmap.md‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ In no particular order, here is what we are working on:
1818
* 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.
1919
* Import from other website systems. There are already existing [migration tools](https://gohugo.io/tools/#migration) but they don't cover all major platforms.
2020
* An interactive web based editor (See https://discuss.gohugo.io/t/web-based-editor/155)
21-
* Additional [themes](https://github.com/spf13/hugoThemes) (always on-going, contributions welcome!)
21+
* Additional [themes](https://github.com/gohugoio/hugoThemes) (always on-going, contributions welcome!)
2222
* Dynamic image resizing via shortcodes ([#1014][])
2323
* Native support for additional content formats (AsciiDoc [#1435][], reST [#1436][])
2424
* And, last but not least, ***Your best ideas***!
2525

26-
[#100]: https://github.com/spf13/hugo/issues/100 "hugo import from wordpress · Issue #100 · spf13/hugo"
27-
[#101]: https://github.com/spf13/hugo/issues/101 "hugo import from jekyll · Issue #101 · spf13/hugo"
28-
[#1435]: https://github.com/spf13/hugo/issues/1435 "Add support for native Go implementation of AsciiDoc · Issue #1435 · spf13/hugo"
29-
[#1436]: https://github.com/spf13/hugo/issues/1436 "Add support for native Go implementation of reStructuredText (reST) · Issue #1436 · spf13/hugo"
30-
[#1014]: https://github.com/spf13/hugo/issues/1014 "Image Resizing and Cropping · Issue #1014 · spf13/hugo"
31-
[#98]: https://github.com/spf13/hugo/issues/98 "Add support for related content · Issue #98 · spf13/hugo"
26+
[#100]: https://github.com/gohugoio/hugo/issues/100 "hugo import from wordpress · Issue #100 · gohugoio/hugo"
27+
[#101]: https://github.com/gohugoio/hugo/issues/101 "hugo import from jekyll · Issue #101 · gohugoio/hugo"
28+
[#1435]: https://github.com/gohugoio/hugo/issues/1435 "Add support for native Go implementation of AsciiDoc · Issue #1435 · gohugoio/hugo"
29+
[#1436]: https://github.com/gohugoio/hugo/issues/1436 "Add support for native Go implementation of reStructuredText (reST) · Issue #1436 · gohugoio/hugo"
30+
[#1014]: https://github.com/gohugoio/hugo/issues/1014 "Image Resizing and Cropping · Issue #1014 · gohugoio/hugo"
31+
[#98]: https://github.com/gohugoio/hugo/issues/98 "Add support for related content · Issue #98 · gohugoio/hugo"
3232

33-
> 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.)
33+
> 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.)

‎docs/content/overview/installing.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ weight: 20
1515

1616
Hugo is written in [Go][] with support for multiple platforms.
1717

18-
The latest release can be found at [Hugo Releases](https://github.com/spf13/hugo/releases).
18+
The latest release can be found at [Hugo Releases](https://github.com/gohugoio/hugo/releases).
1919
We currently provide pre-built binaries for
2020
<i class="fa fa-windows"></i>&nbsp;Windows,
2121
<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
2828
## Installing Hugo (binary)
2929

3030
Installation is very easy. Simply download the appropriate version for your
31-
platform from [Hugo Releases](https://github.com/spf13/hugo/releases).
31+
platform from [Hugo Releases](https://github.com/gohugoio/hugo/releases).
3232
Once downloaded it can be run from anywhere. You don't need to install
3333
it into a global location. This works well for shared hosts and other systems
3434
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/
9797
snap install hugo
9898

9999
> 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.
100-
> More information is also available [in this related GitHub issue](https://github.com/spf13/hugo/issues/3143).
100+
> More information is also available [in this related GitHub issue](https://github.com/gohugoio/hugo/issues/3143).
101101
102102
## Installing from source
103103

@@ -116,10 +116,10 @@ You **must use govendor** to fetch Hugo's dependencies.
116116
### Fetch from GitHub
117117

118118
go get github.com/kardianos/govendor
119-
govendor get github.com/spf13/hugo
119+
govendor get github.com/gohugoio/hugo
120120

121121
`govendor get` will fetch Hugo and all its dependent libraries to
122-
`$HOME/go/src/github.com/spf13/hugo`, and compile everything into a final `hugo`
122+
`$HOME/go/src/github.com/gohugoio/hugo`, and compile everything into a final `hugo`
123123
(or `hugo.exe`) executable, which you will find sitting inside
124124
`$HOME/go/bin/`, all ready to go!
125125

‎docs/content/overview/introduction.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,5 +193,5 @@ as I have writing it.
193193
* [Install Hugo](/overview/installing/)
194194
* [Quick start](/overview/quickstart/)
195195
* [Join the Mailing List](/community/mailing-list/)
196-
* [Star us on GitHub](https://github.com/spf13/hugo)
196+
* [Star us on GitHub](https://github.com/gohugoio/hugo)
197197
* [Discussion Forum](http://discuss.gohugo.io/)

0 commit comments

Comments
 (0)