You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/community/contributing.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ title: Contributing to Hugo
13
13
weight: 30
14
14
---
15
15
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.
17
17
18
18
You should fork the project and make your changes. *We encourage pull requests to discuss code changes.*
19
19
@@ -23,7 +23,7 @@ When you're ready to create a pull request, be sure to:
23
23
* Have test cases for the new code. If you have questions about how to do it, please ask in your pull request.
24
24
* Run `go fmt`.
25
25
* 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.
27
27
28
28
## Contribution Overview
29
29
@@ -41,16 +41,16 @@ You **must use govendor** to fetch Hugo's dependencies.
41
41
## Fetch the Sources
42
42
43
43
go get github.com/kardianos/govendor
44
-
govendor get github.com/spf13/hugo
44
+
govendor get github.com/gohugoio/hugo
45
45
46
46
## Running Hugo
47
47
48
-
cd $HOME/go/src/github.com/spf13/hugo
48
+
cd $HOME/go/src/github.com/gohugoio/hugo
49
49
go run main.go
50
50
51
51
## Building Hugo
52
52
53
-
cd $HOME/go/src/github.com/spf13/hugo
53
+
cd $HOME/go/src/github.com/gohugoio/hugo
54
54
make build
55
55
# or to install to $HOME/go/bin:
56
56
make install
@@ -100,11 +100,11 @@ Check a last time that everything works as expected. Start Hugo's built-in serve
100
100
101
101
hugo server
102
102
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).
104
104
105
105
git commit -m"docs: Add example.com to the showcase"
106
106
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).
108
108
109
109
Don't forget to accept the contributor license agreement. Click on the yellow badge in the automatically added comment in the pull request.
Copy file name to clipboardExpand all lines: docs/content/content/archetypes.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ title = "my archetype example"
106
106
107
107
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.
108
108
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).
110
110
111
111
## Section Archetypes
112
112
@@ -327,4 +327,4 @@ It's a subtle yet important detail to remember.
327
327
328
328
## Notes
329
329
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).
Copy file name to clipboardExpand all lines: docs/content/content/supported-formats.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ weight: 15
13
13
toc: true
14
14
---
15
15
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).
17
17
18
18
This means that you will have to install the associated tool on your machine to be able to use those formats.
Copy file name to clipboardExpand all lines: docs/content/extras/output-formats.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,7 @@ The partial below is a plain text template (Outpuf Format is `CSV`, and since th
177
177
{{ partial "mytextpartial.csv" . }}
178
178
```
179
179
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.
Copy file name to clipboardExpand all lines: docs/content/meta/roadmap.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,16 +18,16 @@ In no particular order, here is what we are working on:
18
18
* 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.
19
19
* Import from other website systems. There are already existing [migration tools](https://gohugo.io/tools/#migration) but they don't cover all major platforms.
20
20
* An interactive web based editor (See https://discuss.gohugo.io/t/web-based-editor/155)
* Dynamic image resizing via shortcodes ([#1014][])
23
23
* Native support for additional content formats (AsciiDoc [#1435][], reST [#1436][])
24
24
* And, last but not least, ***Your best ideas***!
25
25
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"
32
32
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.)
Copy file name to clipboardExpand all lines: docs/content/overview/installing.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ weight: 20
15
15
16
16
Hugo is written in [Go][] with support for multiple platforms.
17
17
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).
19
19
We currently provide pre-built binaries for
20
20
<iclass="fa fa-windows"></i> Windows,
21
21
<iclass="fa fa-linux"></i> Linux,
@@ -28,7 +28,7 @@ Hugo may also be compiled from source wherever the Go compiler tool chain can ru
28
28
## Installing Hugo (binary)
29
29
30
30
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).
32
32
Once downloaded it can be run from anywhere. You don't need to install
33
33
it into a global location. This works well for shared hosts and other systems
34
34
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/
97
97
snap install hugo
98
98
99
99
> 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).
101
101
102
102
## Installing from source
103
103
@@ -116,10 +116,10 @@ You **must use govendor** to fetch Hugo's dependencies.
116
116
### Fetch from GitHub
117
117
118
118
go get github.com/kardianos/govendor
119
-
govendor get github.com/spf13/hugo
119
+
govendor get github.com/gohugoio/hugo
120
120
121
121
`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`
123
123
(or `hugo.exe`) executable, which you will find sitting inside
0 commit comments