* delicious and google bookmarks discontinued
* delicious and google bookmarks discontinued
* fix: i18n keys
* Social services i18n keys had "line" as a key, fixed accordingly.
* fix: added missing share services
Added "telegram" and "whatsapp" in the list.
* fix: breadcrumb not turning-off when in term list
When breadcrumb is turned-off in config file, it remains available in `/categories/{term}/` and `/tags/{term}/ ` list view.
* fix: breadcrumb not turning-off when set in config
Fixed breadcrumb showing in "Section List" regardless of "false" setting in config params.
* upd: deprecated in Hugo v0.119.0, removed in Hugo v0.125.0
* fix: use hugo.IsServer as .Site.IsServer is deprecated
---------
Co-authored-by: I'M YourOnly.One <1079205+techmagus@users.noreply.github.com>
Co-authored-by: techmagus <techmagus@im.youronly.one>
If enableSearchHighlight = false is set in params.toml,
populated search results will use the makeLi function to set href to obj.item.permalink as opposed to obj.item.uri when the makeHighlightLi function is used.
obj.item.permalink used will result in undefined attribute and invalid links.
The current link for the RSS feed link on the [Posts page](https://themes.gohugo.io//theme/hugo-theme-zzo/en/posts) renders as `/theme/hugo-theme-zzo/en/posts**//**index.xml`. This was causing 404 errors when serving from a Google Cloud Storage bucket. This PR removes that extra slash (/) and fixed those errors for me on all pages with an RSS feed.
Hugo throws error while building if I do not give any description. Because the description were becoming only `"description": ,` which is invalid. FIxed it by wraping which will give `"description": "",` which is valid.