Skip to content

Commit

Permalink
docs: Update content references to gohugoio/hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Jun 13, 2017
1 parent c17ad67 commit 715ff1f
Show file tree
Hide file tree
Showing 32 changed files with 172 additions and 172 deletions.
14 changes: 7 additions & 7 deletions docs/content/community/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.*

Expand All @@ -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

Expand All @@ -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
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/community/mailing-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/content/community/press.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/content/content/archetypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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).
2 changes: 1 addition & 1 deletion docs/content/content/supported-formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/extras/menus.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-->
Expand Down
2 changes: 1 addition & 1 deletion docs/content/extras/output-formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.



Expand Down
16 changes: 8 additions & 8 deletions docs/content/meta/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
10 changes: 5 additions & 5 deletions docs/content/overview/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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.
Expand Down Expand Up @@ -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

Expand All @@ -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!

Expand Down
2 changes: 1 addition & 1 deletion docs/content/overview/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
2 changes: 1 addition & 1 deletion docs/content/overview/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions docs/content/release-notes/0.20.3-relnotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
10 changes: 5 additions & 5 deletions docs/content/release-notes/0.20.4-relnotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)



Expand Down
2 changes: 1 addition & 1 deletion docs/content/release-notes/0.20.5-relnotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
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)).
10 changes: 5 additions & 5 deletions docs/content/release-notes/0.20.6-relnotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)



Expand Down
Loading

0 comments on commit 715ff1f

Please sign in to comment.