We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minification in Hugo 0.139.0 will convert
<gcse:searchresults-only></gcse:searchresults-only>
into
<gcse :searchresults-only></gcse:searchresults-only>
Notice the space in between the "gcse" and the colon. This prevents search results from being displayed.
Results are showing fine here, the last commit using Hugo 0.138.0:
$ curl -s "https://deploy-preview-5567--opentelemetry.netlify.app/search/?q=load" | perl -ne 'print "$&\n" if /<gcse..*?>/g' <gcse:searchresults-only>
With open-telemetry/opentelemetry.io#5642, we upgraded to Hugo 0.139.0, and you can see the inserted space character in the tag name:
$ curl -s "https://deploy-preview-5642--opentelemetry.netlify.app/search/?q=load" | perl -ne 'print "$&\n" if /<gcse..*?>/g' <gcse :searchresults-only>
Related:
/cc @svrnm @theletterf
The text was updated successfully, but these errors were encountered:
minifiers: Add failing test for upstream bug
442aea0
See gohugoio#13082
Revert "build(deps): bump github.com/tdewolff/minify/v2 from 2.20.37 …
2d74af9
…to 2.21.1" This reverts commit 7a2f04e. Closes gohugoio#13082
5a50eee
See #13082
aa3dd19
bep
No branches or pull requests
Minification in Hugo 0.139.0 will convert
into
Notice the space in between the "gcse" and the colon. This prevents search results from being displayed.
Hugo 0.138.0 is fine
Results are showing fine here, the last commit using Hugo 0.138.0:
Hugo 0.139.0 adds space to GCSE tag name
With open-telemetry/opentelemetry.io#5642, we upgraded to Hugo 0.139.0, and you can see the inserted space character in the tag name:
Related:
/cc @svrnm @theletterf
The text was updated successfully, but these errors were encountered: