Commit Graph
9481 Commits
Author SHA1 Message Date
hugoreleaser 986ea0c8ea releaser: Add release notes to /docs for release of 0.74.3
[ci skip]
2020-07-23 16:21:21 +00:00
Helder PereiraandGitHub 3299b44bdb Fix Asciidoctor args
* Fix Asciidoctor args

* Fix Asciidoctor args documentation

* Update AsciiDoc documentation

Co-authored-by: Derk Muenchhausen <derk@muenchhausen.de>

Fixes #7493
2020-07-23 15:59:48 +02:00
Bjørn Erik Pedersen bcb9503470 resources/js: Add option for setting bundle format
Fixes #7503
2020-07-22 10:13:30 +02:00
Bjørn Erik Pedersen 3f8324918b resources/js: Add es5 build target 2020-07-20 22:26:38 +02:00
Regis PhilibertandGitHub a26d0e6104 Add documentation to js.Build (#1175)
Fixes #1171
2020-07-20 10:09:06 -04:00
Bjørn Erik PedersenandGitHub 439a22c3e5 Update index.md 2020-07-17 19:50:44 +02:00
Bjørn Erik Pedersen 7a779b39a7 Hugo 0.74.2 2020-07-17 19:45:20 +02:00
Bjørn Erik Pedersen 07cb5740c1 Merge branch 'temp742' 2020-07-17 19:44:52 +02:00
hugoreleaser abcea676c6 releaser: Add release notes to /docs for release of 0.74.2
[ci skip]
2020-07-17 17:22:42 +00:00
Patrick KollitschandGitHub e0dcdbfea4 Revert "Adding an issue link to the issue creation workflow (#1023)"
This PR did hide the option to create an empty issue unexpectedly under a large link to the community. Not what I expected and sadly untestable. Sorry. I'll open another PR adding issue templates.
2020-07-16 11:42:13 +07:00
Patrick KollitschandGitHub 21c7131f1e Adding an issue link to the issue creation workflow (#1023)
This config enables us to add external links to the process of creating new issues. I propose to add a friendly link to the community, just in case the issue opener is not aware of this forum.
2020-07-16 11:36:06 +07:00
Bjørn Erik PedersenandGitHub 922afb18be Update index.md 2020-07-14 21:36:45 +02:00
Bjørn Erik PedersenandGitHub b9512b1920 Update index.md 2020-07-13 21:25:07 +02:00
Bjørn Erik PedersenandGitHub b7af5993cb Update index.md 2020-07-13 21:19:53 +02:00
Bjørn Erik Pedersen 816f864b6c Release 0.74.1 2020-07-13 21:16:40 +02:00
Bjørn Erik Pedersen 1732f34611 Merge branch 'temp741' 2020-07-13 21:16:04 +02:00
hugoreleaser d473f21c11 releaser: Add release notes to /docs for release of 0.74.1
[ci skip]
2020-07-13 18:52:36 +00:00
Bjørn Erik Pedersen bb234e9cda Add release notes 0.74.0 2020-07-13 20:40:43 +02:00
hugoreleaser 5cb3166d44 releaser: Add release notes to /docs for release of 0.74.0
[ci skip]
2020-07-13 10:30:11 +00:00
Bjørn Erik Pedersen 7f35a38001 Merge commit '823ce055ed3356da37e9ec4ac70446bdbbaa8de8' 2020-07-13 11:01:55 +02:00
Bjørn Erik Pedersen 4b7054be50 docs: Regenerate docs helper 2020-07-13 11:01:38 +02:00
Bjørn Erik Pedersen c3b4f84106 Update theme 2020-07-11 13:30:35 +02:00
retlatandGitHub 0aaecc16c7 Remove unnecessary period. (#1168) 2020-07-08 00:00:47 +09:00
Bjørn Erik Pedersen 1d86f0aed7 Merge commit '6aa5c9117fd34644459ea9bcfb1b3f5010658d5d' 2020-07-07 07:00:01 +02:00
Pavan NarendraandBjørn Erik Pedersen cfd74b57d9 Add a config file update step.
The baseURL parameter in the config file needs to be updated.
2020-07-07 06:57:49 +02:00
Regis Philibert 5957d8815d Wrap cache configuration in code-toggle 2020-07-06 10:15:27 -04:00
Bryan KleinandBjørn Erik Pedersen 068b2ab28c Update formats.md doc for new allowed extensions.
This PR documents the changes made in https://github.com/gohugoio/hugo/pull/7447/files adding two other extensions to the Allowed list.
2020-07-03 01:27:51 +02:00
Bjørn Erik Pedersen d71ed99d3b Add support for inline partials
Fixes #7444
2020-07-01 23:10:21 +02:00
Derk MuenchhausenandGitHub efe0e549c5 Rework external asciidoctor integration
This commit solves the relative path problem with asciidoctor tooling. An include will resolve relatively, so you can refer easily to files in the same folder.

Also `asciidoctor-diagram` and PlantUML rendering works now, because the created temporary files will be placed in the correct folder.

This patch covers just the Ruby version of asciidoctor. The old AsciiDoc CLI EOLs in Jan 2020, so this variant is removed from code.

The configuration is completely rewritten and now available in `config.toml` under the key `[markup.asciidocext]`:

```toml
[markup.asciidocext]
    extensions = ["asciidoctor-html5s", "asciidoctor-diagram"]
    workingFolderCurrent = true
    trace = true
    [markup.asciidocext.attributes]
        my-base-url = "https://example.com/"
        my-attribute-name = "my value"
```

- backends, safe-modes, and extensions are now whitelisted to the popular (ruby) extensions and valid values.
- the default for extensions is to not enable any, because they're all external dependencies so the build would break if the user didn't install them beforehand.
- the default backend is html5 because html5s is an external gem dependency.
- the default safe-mode is safe, explanations of the modes: https://asciidoctor.org/man/asciidoctor/
- the config is namespaced under asciidocext_config and the parser looks at asciidocext to allow a future native Go asciidoc.
- `uglyUrls=true` option and `--source` flag are supported
- `--destination` flag is required

Follow the updated documentation under `docs/content/en/content-management/formats.md`. 
  
This patch would be a breaking change, because you need to correct all your absolute include pathes to relative paths, so using relative paths must be configured explicitly by setting `workingFolderCurrent = true`.
2020-06-25 09:51:33 +02:00
Christian OliffandGitHub 914405c0ef capitalization and indentation fix for taxonomies page (#1159)
as a bonus, this prevents the horizontal scrollbar appearing on the markdown snippet at the the bottom
2020-06-25 15:40:02 +09:00
Jessica HuynhandGitHub 223b80f420 Fix page kinds shortcode not rendering on Taxonomies page (#1158)
* remove trailing space after "terms" in page-kinds shortcode

* use % style shortcode to render page-kinds markdown table
2020-06-25 15:09:56 +09:00
OmarEmaraDevandBjørn Erik Pedersen a9b6fa9842 Clarify weight description. 2020-06-24 12:41:32 +02:00
OmarEmaraDevandBjørn Erik Pedersen 29e121681f Warn about zero weights in front matter. 2020-06-24 12:41:32 +02:00
Bjørn Erik Pedersen 27ce7ba8c6 Release 0.73.0 2020-06-23 19:18:16 +02:00
Bjørn Erik Pedersen e9596b2ee1 Merge branch 'temp73' 2020-06-23 19:05:46 +02:00
hugoreleaser 074a270cdc releaser: Add release notes to /docs for release of 0.73.0
[ci skip]
2020-06-23 16:29:21 +00:00
Daniel SantosandGitHub 4f56a9fc0f width fix of expanding code box in documentation (#1156)
With some viewport widths the expansion of code sample boxes is still going over the sidebar. This fixes it.
2020-06-22 18:05:29 +07:00
Daniel SantosandGitHub f27254d602 css fix of expanding code box in documentation (#1155)
The code sample box in Hugo code samples expanded on mouse over to 100vw which went over the sidebar toc. This solution solves this looking better and expanding only over the middle column.
2020-06-19 22:04:04 +07:00
SIkebeandGitHub 43b5761788 Fix incorrect directory name in quick-start (#1154) 2020-06-19 19:26:20 +07:00
Bjørn Erik Pedersen 16726eacf4 Add GroupByLastmod
Fixes #7408
2020-06-19 11:58:58 +02:00
Christian OliffandGitHub 73c31758e0 Fix for broken link again (#1151) 2020-06-18 19:15:17 +09:00
max-reandGitHub d070672951 Fix broken link (#1144) 2020-06-18 19:10:11 +09:00
Bjørn Erik Pedersen bc0b484d1b Rename taxonomy kinds from taxonomy to term, taxonomyTerm to taxonomy
And we have taken great measures to limit potential site breakage:

* For `disableKinds` and `outputs` we try to map from old to new values if possible, if not we print an ERROR that can be toggled off if not relevant.
* The layout lookup is mostly compatible with more options for the new `term` kind.

That leaves:

* Where queries in site.Pages using taxonomy/taxonomyTerm Kind values as filter.
* Other places where these kind value are used in the templates (classes etc.)

Fixes #6911
Fixes #7395
2020-06-18 09:09:56 +02:00
Christian OliffandBjørn Erik Pedersen 674d71842e Fix Typo on Docker section of installation page
Fixes: #1147
2020-06-17 17:10:03 +02:00
Bjørn Erik Pedersen b877781659 Merge commit 'efa74c5c6e6ff1daddeb5834ea7c69bed2acf171' 2020-06-16 14:19:31 +02:00
MauriceandGitHub ac2c4a4871 Update documentation for Ugly URLs (#1082)
* Update urls.md

Update documentation to reflect status of this issue - (the --uglyurls CLI parameter no longer exists)
https://github.com/gohugoio/hugo/issues/4428

See also: https://gohugo.io/getting-started/configuration/#configure-with-environment-variables

* Update urls.md

Remove a "use" that was not necessary.
2020-06-14 20:51:19 +07:00
Jake JarvisandBjørn Erik Pedersen 88bdec17a5 Change 072.0 to 0.72.0 in release post's description 2020-06-13 01:04:31 +02:00
vojta001andGitHub 2aa7d7818c Update rss.md (#1104)
Fix a link to RSS 2.0 template
2020-06-11 14:31:52 +07:00
Paul MurrayandGitHub c80677aeb9 Update quick-start.md (#1076)
improved grammar
2020-06-11 14:30:04 +07:00
Christian OliffandBjørn Erik Pedersen d04196bbdd Minor spelling and capitalization fixes 2020-06-10 12:50:40 +02:00