diff options
author | Bjørn Erik Pedersen <[email protected]> | 2020-10-14 11:23:24 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2020-10-14 16:59:37 +0200 |
commit | ead5799f7ea837fb2ca1879a6d37ba364e53827f (patch) | |
tree | 9f7b753877413ace8a86b2c86a256651361273c3 /hugolib/page__paths.go | |
parent | d57be113243be4b76310d4476fbb7525d1452658 (diff) | |
download | hugo-ead5799f7ea837fb2ca1879a6d37ba364e53827f.tar.gz hugo-ead5799f7ea837fb2ca1879a6d37ba364e53827f.zip |
Render aliases even if render=link
Fixes #7832
Diffstat (limited to 'hugolib/page__paths.go')
-rw-r--r-- | hugolib/page__paths.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/page__paths.go b/hugolib/page__paths.go index 535c60ba0..d41b7c2bc 100644 --- a/hugolib/page__paths.go +++ b/hugolib/page__paths.go @@ -76,7 +76,7 @@ func newPagePaths( } var out page.OutputFormats - if !pm.noRender() { + if !pm.noLink() { out = pageOutputFormats } |