Chapter 1

Introduction

Discover what this Hugo theme is all about.

Getting Started

Initialize your website in a few simple steps

Tool Integration

All about supported 3rd party tools

What's New

What's new in this version

Changelog

The detailed changelog

Subsections of Introduction

Getting Started

Here’s how to start your new website. If you’re new to Hugo, we recommend learning more about it in its excellent starter’s guide.

Install Hugo

Download and install Hugo 0.126.0 or newer for your operating system following the instructions.

The standard edition of Hugo is sufficient but you can also use the extended edition.

Create your Project

Use Hugo’s new site command to make a new website

hugo new site my-new-site

Then move into the new directory

cd my-new-site

Run all future commands from this directory.

Install the Theme

Download as a Zip File

You can download the theme as a .zip file and unzip it into the themes/hugo-theme-relearn directory.

Then add this at the top of your hugo.toml

hugo.
theme = 'hugo-theme-relearn'
theme: hugo-theme-relearn
{
   "theme": "hugo-theme-relearn"
}

Use Hugo’s Module System

Install the Relearn theme using Hugo’s module system

hugo mod init example.com

Then add this at the end of your hugo.toml

hugo.
[module]
  [[module.imports]]
    path = 'github.com/McShelby/hugo-theme-relearn'
module:
  imports:
  - path: github.com/McShelby/hugo-theme-relearn
{
   "module": {
      "imports": [
         {
            "path": "github.com/McShelby/hugo-theme-relearn"
         }
      ]
   }
}

Use as a Git Submodule

If you’re using Git for your project, you can create a repository now

git init

Add the theme as a Git submodule

git submodule add --depth 1 https://github.com/McShelby/hugo-theme-relearn.git themes/hugo-theme-relearn

Then add this at the top of your hugo.toml

hugo.
theme = 'hugo-theme-relearn'
theme: hugo-theme-relearn
{
   "theme": "hugo-theme-relearn"
}

Create your Home Page

Start by making a home page

hugo new --kind home _index.md

The new home page file content/_index.md has two parts: the page info (like title) at the top, called front matter, and the page content below.

Create your First Chapter Page

Chapters are top-level pages that contain other pages. They have a special layout.

Make your first chapter page

hugo new --kind chapter first-chapter/_index.md

The new file content/first-chapter/_index.md has a weight number in the front matter. This sets the chapter’s subtitle and its order in the menu.

Create your First Content Pages

Now make content pages inside the chapter. Here are three ways to do this

hugo new first-chapter/first-page/_index.md
hugo new first-chapter/second-page/index.md
hugo new first-chapter/third-page.md

Hugo treats these files differently based on their file names. Learn more in Hugo’s guide.

Feel free to edit these files. Change the title, add a weight if you want, and write your content.

Test your Website Locally

Start your new website on your computer with this command

hugo serve

Open http://localhost:1313 in your web browser.

You can keep the server running while you edit. The browser will update automatically when you save changes.

Magic

It’s a kind of magic

Build and Deploy your Website

When your site is ready to go live, run this command

hugo

This creates a public directory with all your website files.

You can upload this directory to any web server, or use one of Hugo’s many other ways to publish.

Next Steps

Your site is now fully functional.

You can continue configuring your site to your needs.

Or just start authoring content and discover what’s possible.

Tool Integration

Front Matter CMS

The theme supports the great VSCode Front Matter CMS extension which provides on-premise CMS capabilties to Hugo.

For that, the theme provides a snippets file so you can use shortcodes from inside the Front Matter CMS.

Currently only English and German is supported.

To use them in your Front Matter CMS, put a reference into your frontmatter.json like this

{
  "frontMatter.extends": [
    "./vscode-frontmatter/snippets.en.json"
  ]
}

What's New

See the changelog of this version for a detailed list of changes.
  • 0.126.0 Minimum required Hugo version

  • Breaking Change requiring action after upgrade

  • Change Change of behavior, may require action

  • New New behavior, often introducing new options


Version 7

7.0.0 (2024-10-15)

Hugo 0.126.0

  • 0.126.0 This release requires a newer Hugo version.

Breaking

  • Breaking This release comes with significant changes in file naming of partials and how the theme works internally. This was done because the theme

    • suffered from poor build performance for sites with 1000 or more pages
    • reinvented the wheel instead of using available Hugo mechanisms

    What do I gain, you may ask. A significant performance boost during build! Usually, the build time has been cut at least in half for bigger sites. It is now possible to build even larger sites with 5000 or more pages. This was previously almost impossible due to rapidly increasing build time with the more pages you’ve introduced. For even bigger sites, the theme now has configurable performance optimizations - at the price of feature limitations.

    If you haven’t done customizations to any partials, you can update right away.

    If you have customized your templates, in the best cases, you will get build warnings or even errors. In the worst cases, your build succeeds but the site will not work as intended by you.

    Specifically, you will have to adapt your site if you have

  • Breaking This release changes the way the search index and the dedicated search page are generated. This may require reconfiguration by you to still work as you have intended.

    You need to remove the now obsolete search and searchpage output format from [outputs.home] in your hugo.toml, resulting in something similar to

    hugo.
    [outputs]
      home = ['html', 'rss', 'print']
    outputs:
      home:
      - html
      - rss
      - print
    {
       "outputs": {
          "home": [
             "html",
             "rss",
             "print"
          ]
       }
    }

    After that, your build will succeed but will most likely cause new defaults to be applied. With no further settings, in-page search, search popup and dedicated search page are all active by default. This can be reconfigured.

    In addition, you are now able to overwrite the default file name of the search index and the default page name of the dedicated search page by changing searchIndexURL and searchPageURL respectively in your hugo.toml.

    See the updated documentation for reference.

Change

  • Change Once again, the theme changed the font. We switched to the excellent Roboto Flex font.

    Care was taken to configure the font to look similar to the previously used Work Sans. Nevertheless, in direct comparison, you will see slight differences in appearance.

    This change was necessary as the previously used font had display issues with marked text, contrast, and some other minor stuff. As an aftermath, the number of requests and the download size were decreased when loading a page.

    The font was created by Google, is licensed under OFL 1.1 and is delivered from your theme’s installation. As always, no third-party server calls are involved.

    If you have changed the font-family in your installation, you most likely have to adjust the variables --MAIN-font-weight, --MAIN-BOLD-font-weight and --MAIN-letter-spacing.

    Additionally, if you have changed the font to a variable font in your installation, you may have to adjust the variable --MAIN-font-variation-settings. As this only applies to variable fonts, this should rarely be necessary.

  • Change While switching the font, it was discovered that certain CSS variables were falsely named. You don’t need to change anything in your custom variant stylesheet as the old names will be used as a fallback.

    --MAIN-TITLES-TEXT-font was renamed to --MAIN-TITLES-font, --MAIN-TITLES-H<n>-color was renamed to --MAIN-TITLES-H<n>-TEXT-color.

  • Change The options and front matter to force loading a math, mermaid or openapi library has been changed.

    Previously, you had to set the unintuitive disableMathJax=false to force load the math library in case of a passthrough configuration. This is replaced by the simpler math=true or math.force=true and is now in line with Hugo’s official documentation.

    You don’t need to change anything yet but will receive warnings if the old settings are used.

  • Change The default logo is not contained inside of the theme’s logo partial anymore.

    This is to avoid usage of the theme’s branding throughout the web in non-modified installations.

    In addition, the default text for the logo partial is now taken from the linkTitle setting of your hugo.toml.

New


Version 6

6.4.0 (2024-10-11)

Change

New

  • New It is now possible to have user-defined styles for all shortcodes that accept the style parameter. See the notice shortcode for configuration.

  • New The resources shortcode has a new parameter expanded to make the resource list collapsible.


6.3.0 (2024-09-03)

Change

  • Change The expand shortcode changed the naming of the open parameter to expanded. You don’t need to change anything yet but may get deprecation warnings.

  • Change If the content for the notice shortcode is empty, now only the title bar will be displayed. Previously an empty content box was displayed.

New

  • New The notice shortcode has a new parameter expanded to make the content collapsible.

  • New If you are running Hugo 0.134.0 or later, the theme now supports Obsidian callouts.

  • New The theme has updated its Mermaid dependency to 11.1.0. This adds support for packet and architecture diagrams.


6.2.0 (2024-08-26)

Change

  • Change The heading anchor links are extended in functionality.

    If you now click on it, not only is the link copied to the clipboard (previous behavior) but also the heading scrolls to the top of the page.

    If you dislike the new behavior, you can deactivate it by setting disableAnchorScrolling=true in your hugo.toml. See the docs for further options.

New

  • New If you are running Hugo 0.132.0 or later, the theme is now capable to print GitHub alerts.

  • New To support new severity levels for GitHub alerts, all shortcodes that support severity levels with their style parameter were expanded with the new severities caution and important and the color parameter was expanded with cyan and magenta. Please note, that coloring and icons of severities may defer from the display you see on GitHub.

  • New To support new severity levels for GitHub alerts, the new severities and their according colors are also available as CSS variables BOX-MAGENTA-color, BOX-MAGENTA-TEXT-color, BOX-CAUTION-color, BOX-CAUTION-TEXT-color, BOX-CYAN-color, BOX-CYAN-TEXT-color, BOX-IMPORTANT-color, BOX-IMPORTANT-TEXT-color. You don’t need to change anything in your custom color stylesheet as appropriate default colors will be used.


6.1.0 (2024-08-02)

Change

  • Change The include shortcode is now able to resolve links to pages as well as resources or files in the file system (the old behavior).

  • Change To make the asset buster mechanism more robust, some internally used stylesheets where restructured. This generally should not affect your page in any negative way.

New

  • New The openapi shortcode is now able to resolve links to resources as well as to files in the file system (the old behavior). You can configure to generate warnings or errors during build by setting openapi.errorlevel to either warning or error in your hugo.toml if a path can not be resolved.

  • New Shortcodes supporting an errorlevel configuration can now have overridden values in the front matter section of each individual page.

  • New The theme now comes with its own overridden version of the relref shortcode.

    While the usage of relref is obsolete and discouraged by Hugo for a while, existing installations may use it. In configurations using a baseURL with a subdirectory, and having relativeURLs=false (the default) Hugo’s standard relref implementation was failing.

    The shortcode is deactivated by default and can be activated by setting

    hugo.
    [params]
      disableDefaultRelref = true
    params:
      disableDefaultRelref: true
    {
       "params": {
          "disableDefaultRelref": true
       }
    }

    in your hugo.toml. Only do this if your site fulfills all of the above assumptions.


6.0.0 (2024-04-27)

Breaking

  • Breaking This release requires you to move your self-defined variant (theme-*.css) and chroma stylesheets (chroma-*.css) from static/css to assets/css.

    This was necessary to avoid permission errors on build if running in certain Unix configurations.

    In addition it is not allowed anymore to @import your chroma stylesheet from inside of your variant stylesheet.

    Say, your chroma stylesheet is named chroma-monokai.css, you have to add the following inside your variant stylesheet:

    --CODE-theme: monokai;
  • Breaking The parameter description in your hugo.toml will now be ignored.

    With the newly introduced unified handling of descriptions throughout the theme, the only place the old parameter would have been used was your home page.

    For migration, move the description parameter of your hugo.toml into the front matter section of your home page.

  • Breaking Search support for the json outputformat deprecated in 5.4.0 was removed.

    Change it to search for the homepage in your hugo.toml. See the docs for detailed configuration.

  • Breaking The front matter option menuTitle deprecated in 5.24.0 was removed in favor for Hugo’s own linkTitle.

    Additionally, if set, linkTitle will now be used instead of title to generate the breadcrumb.

  • Breaking The swagger shortcode deprecated in 5.13.0 was removed in favor for the openapi shortcode with the same set of parameter.

  • Breaking Support for Internet Explorer 11 was finally dropped.

Change

  • Change With the removal of support for Internet Explorer 11, Font Awesome was upgraded to version 6.5.2.

    You may experience slight changes for some icons. In addition you have additional ~1700 icons to chose from.

  • Change The children shortcode was fixed to adhere to its documentation, generating the description based on this rule: When no description or summary exists for the page, the first 70 words of the content is taken.

    Previously, the summary erroneously was ignored which now can lead to different output if you set description=true as a parameter.

New

  • New The include shortcode is now able to resolve links to resources as well as to files in the file system (the old behavior). You can configure to generate warnings or errors during build by setting include.errorlevel to either warning or error in your hugo.toml if a path can not be resolved.

  • New Math is now usable without enclosing it in a shortcode or Markdown codefence by using Hugo’s passthrough configuration.

  • New Translation into Romanian.


Older Versions

Subsections of What's New

Version 5

See the changelog of this version for a detailed list of changes.
  • 0.126.0 Minimum required Hugo version

  • Breaking Change requiring action after upgrade

  • Change Change of behavior, may require action

  • New New behavior, often introducing new options


5.27.0 (2024-04-07)

Hugo 0.121.0

  • 0.121.0 This release requires a newer Hugo version.

Change

  • Change If the theme is configured to generate warnings or errors during build by setting image.errorlevel to either warning or error in your hugo.toml, it will now also generate output if a link fragment is not found in the target page.

  • Change The dependency loader was made more versatile.

    The configuration in your hugo.toml does not require the location parameter anymore. If you still use it, the theme will work as before but will generate a warning. So you don’t need to change anything, yet.

    With the new mechanism, your dependency loader now receives an additional location parameter instead that you can query to inject your dependencies in the desired location.

    By that you can now call the dependency mechanism in your own overriden partials by giving it a distinct location parameter. In addition your injected files can now be spread to multiple locations which wasn’t previously possible.

New

  • New Additional styling was added for the native HTML elements <mark> and <kbd>. To use them you must allow the usage of HTML in your hugo.toml. The Markdown documentation was enhanced for this.

  • New You now can scroll forward and backward through all headings of a page by using ALT πŸ‘‘ and ALT πŸ‘“. This also works for the PRINT output format.

  • New The breadcrumbs used in the topbar, search results and the taxonomy term lists are now using the pages front matter linktitle instead of title if set.


5.26.0 (2024-03-18)

New

  • New The lazy loading of images is now configurable by using the new lazy image effect. The default value hasn’t changed in comparison to older versions, you don’t need to change anything.

  • New It is now possible to adjust the max width of the main area, eg. in case you want to use the full page width for your content.

  • New Images and Markdown codefences are now respecting Hugo’s Markdown attributes.

  • New The theme has updated its Mermaid dependency to 10.6.0. This adds support for block diagrams.

  • New This release fixes a long-standing bug where the page wasn’t repositioning correctly when going forward or backward in your browser history.


5.25.0 (2024-02-29)

Change

  • Change This release deprecates the attachments shortcode in favor of the new the resources shortcode.

    If you are using Hugo below 0.123.0, you don’t need to change anything as the old shortcode still works (but may generate warnings).

    Anyways, users are strongly advised to migrate as the attachments shortcode will not receive support anymore. Migration instructions are listed on the attachments shortcode page.

  • Change If you run Hugo with GitInfo configured, the default page footer now prints out name, email address and date of the last commit. If you want to turn this off you either have to run Hugo without GitInfo (which is the default) or overwrite the content-footer.html partial.


5.24.0 (2024-02-28)

Hugo 0.112.4

  • 0.112.4 This release requires a newer Hugo version.

Change

  • Change The topbar button received a way to add text next to the icon. For this, the original title option was renamed to hint while the new title option is now displayed next to the icon.

  • Change The front matter option menuTitle is now deprecated in favor for Hugo’s own linkTitle. You don’t need to change anything as the old menuTitle option is still supported.

  • Change The light themes have a bit more contrast for content text and headings. Also the syntaxhighlighting was changed to the more colorful MonokaiLight. This brings the syntaxhighlighting in sync with the corresponding dark theme variants, which are using Monokai. If you dislike this, you can create your own color variant file as described here.

New

  • New If the theme can not resolve a link to a page or image, you can now generate warnings or errors during build by setting link.errorlevel or image.errorlevel to either warning or error in your hugo.toml respectively. By default this condition is silently ignored and the link is written as-is.

    Please note that a page link will generate false negatives if uglyURLs=true and it references an ordinary page before 0.123.0.

    Please note that an image link will generate false negatives if the file resides in your static directory.

  • New You now can configure additional options for every theme variant in your hugo.toml. This allows for optional advanced functionality. You don’t need to change anything as the old configuration options will still work (but may generate warnings now).

    The advanced functionality allows you to set an explicit name for a theme variant and now allows for multiple auto mode variants that adjust to the light/dark preference of your OS settings.

  • New New partial for defining the heading. See documentation for further reading.

  • New Support for Hugo’s built-in figure shortcode.

  • New On taxonomy and term pages you can now use prev/next navigation as within the normal page structure.

  • New In additiion to the existing menu width customization, it is now also possible to set the width of the menu flyout for small screen sizes with the --MENU-WIDTH-S CSS property.

  • New Improvements for accessibility when tabbing through the page for images, links and tab handles.

  • New The editURL config parameter is now overwritable in your pages front matter. In addition it received more versatility by letting you control where to put the file path into the URL. This is achieved by replacing the variable ${FilePath} in your URL by the pages file path. You don’t need to change anything in your existing configuration as the old way without the replacement variable still works.

  • New The themes config and front matter options received a comprehensive documentation update. In addition the theme switched from config.toml to hugo.toml.

  • New Restored compatibility with Hugo versions 0.121.0 or higher for the highlight shortcode. This does not change the minimum required Hugo version.

  • New Restored compatibility with Hugo versions 0.123.0 or higher for theme specific output formats and handling of taxonomy and term titles. This does not change the minimum required Hugo version.


5.23.0 (2023-11-03)

Change

  • Change With 0.120.0 the author settings move into the [params] array in your hugo.toml. Because this collides with the previous way, the theme expected author information, it now adheres to Hugo standards and prints out a warning during built if something is wrong.

    Change your previous setting from

    hugo.
    [params]
      author = 'Hugo'
    params:
      author: Hugo
    {
       "params": {
          "author": "Hugo"
       }
    }

    to

    hugo.
    [params]
      [params.author]
        name = 'Hugo'
    params:
      author:
        name: Hugo
    {
       "params": {
          "author": {
             "name": "Hugo"
          }
       }
    }
  • Change Taxonomy term pages now add the breadcrumb for each listed page. If this gets too crowded for you, you can turn the breadcrumbs off in your hugo.toml by adding disableTermBreadcrumbs=true.

New

  • New Taxonomy and term pages are now allowed to contain content. This is added inbetween the title and the page list.

  • New It is now possible to print custom taxonomies anywhere in your page. See the docs.

  • New It is now possible to adjust the menu width for your whole site. See the docs.

  • New This release adds social media meta tags for the Open Graph protocol and Twitter Cards to your site. See the docs.

  • New This release comes with additional sort options for the menu and the children shortcode. Both will now accept the following values: weight, title, linktitle, modifieddate, expirydate, publishdate, date, length or default (adhering to Hugo’s default sort order).

  • New The theme now provides a mechanism to load further JavaScript dependencies defined by you only if it is needed. This comes in handy if you want to add own shortcodes that depend on additional JavaScript code to be loaded. See the docs.

  • New The theme has updated its Mermaid dependency to 10.6.0. This adds support for the xychart type.

  • New This release adds portable Markdown links.

    Previously it was not possible to use pure Markdown links in a configuration independent way to link to pages inside of your project. It always required you to know how your uglyURLs setting is, wheather you link to a page or page bundle and in case of relative links if your current page is a page or page bundle. (eg. [generator](generator/index.html) vs. [generator](generator.html)). This is a hassle as you have to change these links manually once you change your uglyURLs setting or change the type of a page.

    You could work around this by using the relref shortcode (eg [generator]({{% relref "../generator" %}})) which works but results in non-portable Markdown.

    Now it’s possible to use the same path of a call to relref in a plain Markdown link (eg [generator](../generator)). This is independent of any configuration settings or the page types involved in linking. Note, that this requires your links to be given without any extension, so [generator](generator/index.html) will work as before.

    The following types of linking are supported:

    link description
    [generator](en/configuration/branding/generator) absolute from your project root (multilang)
    [generator](/en/configuration/branding/generator) absolute from your project root (multilang)
    [generator](configuration/branding/generator) absolute from your current language root
    [generator](/configuration/branding/generator) absolute from your current language root
    [generator](./../generator) relative from the current page
    [generator](../generator) relative from the current page

5.22.0 (2023-10-02)

Change

  • Change This release fixes an issue where in unfortunate conditions DOM ids generated by Hugo may collide with DOM ids set by the theme. To avoid this, all theme DOM ids are now prefixed with R-.

    If you haven’t modified anything, everything is fine. Otherwise you have to check your custom CSS rules and JavaScript code.

  • Change You can now have structural sections in the hierarchical menu without generating a page for it.

    This can come in handy, if content for such a section page doesn’t make much sense to you. See the documentation for how to do this.

    This feature may require you to make changes to your existing installation if you are already using shortcuts to pages inside of your project with a headless branch parent.

    In this case it is advised to remove the title from the headless branch parent’s front matter, as it will otherwise appear in your breadcrumbs.

New

  • New It is now possible to overwrite the setting for collapsibleMenu of your hugo.toml inside of a page’s front matter.

  • New If a Mermaid graph is zoomable a button to reset the view is now added to the upper right corner. The button is only shown once the mouse is moved over the graph.

  • New It is now possible to remove the root breadcrumb by setting disableRootBreadcrumb=true in your hugo.toml.

  • New The output of the dedicated search page now displays the result’s breadcrumb.

  • New Table rows now change their background color on every even row.

  • New Translation into Swahili. This language is not supported for search.


5.21.0 (2023-09-18)

Change

  • Change We made changes to the menu footer to improve alignment with the menu items in most cases. Care was taken not to break your existing overwritten footer. Anyways, if you have your menu-footer.html partial overridden, you may want to review the styling (eg. margins/paddings) of your partial.

New

  • New This release comes with an awesome new feature, that allows you to customize your topbar buttons, change behavior, reorder them or define entirely new ones, unique to your installation. See the documentation for further details.

  • New The theme has updated its Swagger dependency to 5.7.2 for the openapi shortcode. This brings support for OpenAPI Specification 3.1.


5.20.0 (2023-08-26)

Change

  • Change The theme has updated its Swagger dependency to 5.4.1 for the openapi shortcode.

    With this comes a change in the light theme variants of Relearn Bright, Relearn Light and Zen Light by switching the syntaxhighlighting inside of openapi to a light scheme. This brings it more in sync with the code style used by the theme variants itself.

    Additionally, the syntaxhighlighting inside of openapi for printing was switched to a light scheme for all theme variants.

    If you dislike this change, you can revert this in your theme variants CSS by adding

    --OPENAPI-CODE-theme: obsidian;
    --PRINT-OPENAPI-CODE-theme: obsidian;
  • Change For consistency reasons, we renamed the CSS variable --MENU-SECTION-HR-color to --MENU-SECTION-SEPARATOR-color. You don’t need to change anything in your custom color stylesheet as the old name will be used as a fallback.

New

  • New The theme variants Zen Light and Zen Dark now add more contrast between menu, topbar and content by adding thin borders.

    Those borders are now configurable by using the CSS variables --MAIN-TOPBAR-BORDER-color, --MENU-BORDER-color, --MENU-TOPBAR-BORDER-color, --MENU-TOPBAR-SEPARATOR-color, --MENU-HEADER-SEPARATOR-color and --MENU-SECTION-ACTIVE-CATEGORY-BORDER-color.

    For existing variants nothing has changed visually.

  • New The default values for the image effects are now configurable for your whole site via hugo.toml or for each page through front matter.

  • New This release fixes a long-standing bug where Mermaid graphs could not be displayed if they were initially hidden - like in collapsed expand or inactive tabs.

  • New Restored compatibility with Hugo versions lower than 0.111.0 for the highlight shortcode. This does not change the minimum required Hugo version.


5.19.0 (2023-08-12)

New

  • New The highlight shortcode now accepts the new parameter title. This displays the code like a single tab. This is also available using Markdown codefences and makes it much easier to write nicer code samples.

  • New The theme has added two new color variants zen-light and zen-dark. Check it out!

  • New The theme now dispatches the custom event themeVariantLoaded on the document when the variant is fully loaded either initially or by switching the variant manually with the variant selector.

  • New The theme has updated its Mermaid dependency to 10.3.1. This adds support for the sankey diagram type and now comes with full support for YAML inside Mermaid graphs (previously, the theme ignored explicit Mermaid theme settings in YAML).

  • New Translation into Hungarian.


5.18.0 (2023-07-27)

Change

  • Change The theme adds additional warnings for deprecated or now unsupported features.

  • Change There are visual improvements in displaying text links in your content as well as to some other clickable areas in the theme. If you’ve overwritten some theme styles in your own CSS, keep this in mind.

New

  • New Restored compatibility with Hugo 0.95.0 or higher. This does not change the minimum required Hugo version.

  • New The siteparam shortcode is now capable in displaying nested params as well as supporting text formatting.


5.17.0 (2023-06-22)

Change

  • Change The default behavior for the copy-to-clipboard feature for code blocks has changed.

    The copy-to-clipboard button for code blocks will now only be displayed if the reader hovers the code block.

    If you dislike this new behavior you can turn it off and revert to the old behavior by adding [params] disableHoverBlockCopyToClipBoard=true to your hugo.toml.

New

  • New Restored compatibility with Hugo 0.114.0 or higher. This does not change the minimum required Hugo version.

  • New The new highlight shortcode replaces Hugo’s default implementation and is fully compatible. So you don’t need to change anything.

    In addition it offers some extensions. Currently only the wrap extension option is provided to control whether a code block should be wrapped or scrolled if to long to fit.


5.16.0 (2023-06-10)

Change

  • Change The theme now provides warnings for deprecated or now unsupported features. The warnings include hints how to fix them and an additional link to the documentation.

    DEPRECATION warnings mark features that still work but may be removed in the future.

    UNSUPPORTED warnings mark features that will not work anymore.

  • Change The 404 error page was revamped. Hopefully you will not see this very often.

New

  • New The tabs shortcode and the tab shortcode received some love and now align with their style, color, title and icon parameter to the other shortcodes.

    The visuals are now slightly different compared to previous versions. Most noteable, if you now display a single code block in a tab, its default styling will adapt to that of a code block but with a tab handle at the top.

    Additionally the name parameter was renamed to title but you don’t need to change anything yet as the old name will be used as a fallback. Nevertheless you will get deprecation warnings while executing Hugo.

  • New The theme now optionally supports separate favicons for light & dark mode.


5.15.0 (2023-05-29)

Change

  • Change Restored compatibility with Hugo 0.112.0 or higher. This does not change the minimum required Hugo version.

    The attachments shortcode has compatibility issues with newer Hugo versions. You must switch to leaf bundles or are locked to Hugo < 0.112.0 for now.

    It is planned to refactor the attchments shortcode in the future. This will make it possible to use the shortcode in branch bundles again but not in simple pages anymore. This will most likely come with a breaking change.

  • Change The tabs shortcode has changed behavior if you haven’t set the groupid parameter.

    Formerly all tab views without a groupid were treated as so they belong to the same group. Now, each tab view is treated as it was given a unique id.

New

  • New The already known tabshas a new friend the tab shortcode to make it easier to create a tab view in case you only need one single tab. Really handy if you want to flag your code examples with a language identifier.

    Additionally for such a use case, the whitespace between a tab outline and the code is removed if only a single code block is contained.

  • New Besides the tag taxonomy the theme now also provides the category taxonomy out of the box and shows them in the content footer of each page.


5.14.0 (2023-05-20)

New

  • New The taxonomy pages received some love in this release, making them better leverage available screen space and adding translation support for the taxonomy names.

    Hugo’s default taxonmies tags and categories are already contained in the theme’s i18n files. If you have self-defined taxonomies, you can add translations by adding them to your own i18n files. If you don’t provide translations, the singualar and plural forms are taken as configured in your hugo.toml.

  • New To give you more flexibility in customizing your article layout a new partial content-header.html is introduced.

    This came out of the requirement to customize the position of article tags, which by default are displayed above the title. A second requirement was to also show additional taxonomies not supported by the theme natively. While Hugo supports tags and categories by default, the theme only displays tags.

    So how to adjust the position of tags starting from the theme’s default where tags are only shown above the title?

    1. Hide tags above title: Overwrite content-header.html with an empty file.
    2. Show tags between title and content: Overwrite heading-post.html and add {{ partial "tags.html" . }} to it.
    3. Show tags below content: Overwrite content-footer.html and add {{ partial "tags.html" . }} to it.
  • New The new parameter breadcrumbSeparator is now available in your hugo.toml to change the - well - separator of the breadcrumb items. An appropriate default is in place if you do not configure anything.


5.13.0 (2023-05-17)

Change

  • Change The swagger shortcode was deprecated in favor for the openapi shortcode. You don’t need to change anything yet as the old name will be used as a fallback. It is planned to remove the swagger shortcode in the next major release.

    Additionally, the implemantion of this shortcode was switched from RapiDoc to SwaggerUI.


5.12.0 (2023-05-04)

Change

  • Change In the effort to comply with WCAG standards, the implementation of the collapsible menu was changed (again). While Internet Explorer 11 has issues in displaying it, the functionality still works.

New

  • New Support for the great VSCode Front Matter CMS extension which provides on-premise CMS capabilties to Hugo.

    The theme provides Front Matter CMS snippets for its shortcodes. Currently only English and German is supported. Put a reference into your frontmatter.json like this

    {
      ...
      "frontMatter.extends": [
      	"./vscode-frontmatter/snippets.en.json"
      ]
      ...
    }
  • New Support for languages that are written right to left (like Arabic) is now complete and extended to the menu, the top navigation bar and print. You can experience this in the pirate translation. This feature is not available in Internet Explorer 11.

  • New The scrollbars are now colored according to their variant color scheme to better fit into the visuals.


5.11.0 (2023-02-07)

Change

  • Change The theme removed the popular jQuery library from its distribution.

    In case you made changes to the theme that are depending on this library you can place a copy of jQuery into your static/js directory and load it from your own layouts/partials/custom-header.html like this:

    <script src="{{"js/jquery.min.js"| relURL}}" defer></script>
  • Change Mermaid diagrams can now be configured for pan and zoom on site-, page-level or individually for each graph.

    The default setting of on, in effect since 1.1.0, changed back to off as there was interference with scrolling on mobile and big pages.

  • Change The theme is now capable to visually adapt to your OS’s light/dark mode setting.

    This is also the new default setting if you haven’t configured themeVariant in your hugo.toml.

    Additionally you can configure the variants to be taken for light/dark mode with the new themeVariantAuto parameter.

    This is not supported for Internet Explorer 11, which still displays in the relearn-light variant.

  • Change The JavaScript code for handling image lightboxes (provided by Featherlight) was replaced by a CSS-only solution.

    This also changed the lightbox effects parameter from featherlight=false to lightbox=false. Nevertheless you don’t need to change anything as the old name will be used as a fallback.

  • Change In the effort to comply with WCAG standards, the implementation of the expand shortcode was changed. While Internet Explorer 11 has issues in displaying it, the functionality still works.

New

  • New Translation into Czech. This language is not supported for search.

  • New GitHub releases are also now tagged for the main version (eg. 1.2.x), major version (eg. 1.x) and the latest (just x) release making it easier for you to pin the theme to a certain version.


5.10.0 (2023-01-25)

New

  • New The attachments, badge, button and notice shortcodes have a new parameter color to set arbitrary CSS color values.

    Additionally the --ACCENT-color brand color introduced in version 5.8.0 is now supported with these shortcodes.


5.9.0 (2022-12-23)

Breaking

  • Breaking With this version it is now possible to not only have sections on the first menu level but also pages.

    It was later discovered, that this causes pages only meant to be displayed in the More section of the menu and stored directly inside your content directory to now show up in the menu as well.

    To get rid of this undesired behavior you have two choices:

    1. Make the page file a headless branch bundle (contained in its own subdirectory and called _index.md) and add the following front matter configuration to the file (see exampleSite’s content/showcase/_index.en.md). This causes its content to not be ontained in the sitemap.

      +++
      title = 'Showcase'
      
      [_build]
        list = 'never'
        publishResources = true
        render = 'always'
      +++
      ---
      _build:
        list: never
        publishResources: true
        render: always
      title: Showcase
      ---
      {
         "_build": {
            "list": "never",
            "publishResources": true,
            "render": "always"
         },
         "title": "Showcase"
      }
    2. Store the page file for below a parent headless branch bundle and add the following front matter to he parent (see exampleSite’s content/more/_index.en.md). Don’t give this page a title as this will cause it to be shown in the breadcrumbs - a thing you most likely don’t want.

      +++
      [_build]
        list = 'never'
        publishResources = false
        render = 'never'
      +++
      ---
      _build:
        list: never
        publishResources: false
        render: never
      ---
      {
         "_build": {
            "list": "never",
            "publishResources": false,
            "render": "never"
         }
      }

      In this case, the file itself can be a branch bundle, leaf bundle or simple page (see exampleSite’s content/more/credits.en.md). This causes its content to be contained in the sitemap.

      +++
      title = 'Credits'
      +++
      ---
      title: Credits
      ---
      {
         "title": "Credits"
      }

Change

  • Change The required directory name for the attachments shortcode was changed for leaf bundles.

    Previously, the attachments for leaf bundles in non-multilang setups were required to be in a files subdirectory. For page bundles and leaf bundles in multilang setups they were always required to be in a _index.<LANGCODE>.files or index.<LANGCODE>.files subdirectory accordingly.

    This added unnecessary complexity. So attachments for leaf bundles in non-multilang setups can now also reside in a index.files directory. Although the old files directory is now deprecated, if both directories are present, only the old files directory will be used for compatibility.

  • Change Absolute links prefixed with http:// or https:// are now opened in a separate browser tab.

    You can revert back to the old behavior by defining externalLinkTarget="_self" in the params section of your hugo.toml.

New


5.8.0 (2022-12-08)

New

  • New The new badge shortcode is now available to add highly configurable markers to your content as you can see it on this page.

  • New The new icon shortcode simplyfies the usage of icons. This can even be combined with also new badge shortcode.

  • New The theme now supports some of GFM (GitHub Flavored Markdown) syntax and Hugo Markdown extensions, namely task lists, defintion lists and footnotes.

  • New A new color --ACCENT-color was introduced which is used for highlighting search results on the page. In case you simply don’t care, you don’t need to change anything in your variant stylesheet as the old yellow color is still used as default.


5.7.0 (2022-11-29)

Change

  • Change The Korean language translation for this theme is now available with the language code ko. Formerly the country code kr was used instead.

New

  • New The button shortcode can now also be used as a real button inside of HTML forms - although this is a pretty rare use case. The documentation was updated accordingly.

  • New The search now supports the Korean language.


5.6.0 (2022-11-18)

New

  • New This release introduces an additional dedicated search page. On this page, displayed search results have more space making it easier scanning through large number of results.

    To activate this feature, you need to configure it in your hugo.toml as a new outputformat searchpage for the home page. If you don’t configure it, no dedicated search page will be accessible and the theme works as before.

    You can access the search page by either clicking on the magnifier glass or pressing enter inside of the search box.

  • New Keyboard handling for the TOC and search was improved.

    Pressing CTRL+ALT+t now will not only toggle the TOC overlay but also places the focus to the first heading on opening. Subsequently this makes it possible to easily select headings by using the TAB key.

    The search received its own brand new keyboard shortcut CTRL+ALT+f. This will focus the cursor inside of the search box so you can immediately start your search by typing.

  • New You are now able to turn off the generation of generator meta tags in your HTML head to hide the used versions of Hugo and this theme.

    To configure this in your hugo.toml make sure to set Hugo’s disableHugoGeneratorInject=true and also [params] disableGeneratorVersion=true, otherwise Hugo will generate a meta tag into your home page automagically.

  • New Creation of your project gets a little bit faster with this release.

    This addresses increased build time with the version 5 releases. The theme now heavily caches partial results leading to improved performance. To further increase performance, unnecessary parts of the page are now skipped for creation of the print output (eg. menus, navigation bar, etc.).


5.5.0 (2022-11-06)

Change

  • Change The way images are processed has changed. Now images are lazy loaded by default which speeds up page load on slow networks and/or big pages and also the print preview.

    For that the JavaScript code to handle the lightbox and image effects on the client side was removed in favour for static generation of those effects on the server.

    If you have used HTML directly in your Markdown files, this now has the downside that it doesn’t respect the effect query parameter anymore. In this case you have to migrate all your HTML img URLs manually to the respective HTML attributes.

    Old New
    <img src="pic.png?width=20vw&classes=shadow,border"> <img src="pic.png" style="width:20vw;" class="shadow border">


5.4.0 (2022-11-01)

Change

  • Change With the proper settings in your hugo.toml your page is now servable from the local file system using file:// URLs.

    Please note that the searchbox will only work for this if you reconfigure your outputformat for the home page in your hugo.toml from json to search. The now deprecated json outputformat still works as before, so there is no need to reconfigure your installation if it is only served from http:// or https://.

  • Change The button shortcode has a new parameter target to set the destination frame/window for the URL to open. If not given, it defaults to a new window/tab for external URLs or is not set at all for internal URLs. Previously even internal URLs where opened in a new window/tab.

New

  • New The math shortcode and mermaid shortcode now also support the align parameter if Markdown codefences are used.

  • New Support for languages that are written right to left (like Arabic). This is only implemented for the content area but not the navigation sidebar. This feature is not available in Internet Explorer 11.

  • New Translation into Finnish (Suomi).


5.3.0 (2022-10-07)

Change

  • Change In the effort to comply with WCAG standards, the implementation of the collapsible menu was changed. The functionality of the new implementation does not work with old browsers (Internet Explorer 11).

New

  • New Image formatting has two new classes to align images to the left or right. Additionally, the already existing inline option is now documented.

  • New Printing for the swagger shortcode was optimized to expand sections that are usually closed in interactive mode. This requires print support to be configured.


5.2.0 (2022-08-03)

Change

  • Change If you’ve set collapsibleMenu = true in your hugo.toml, the menu will be expanded if a search term is found in a collapsed submenu. The menu will return to its initial collapse state once the search term does not match any submenus.

5.1.0 (2022-07-15)

Hugo 0.95.0

  • 0.95.0 This release requires a newer Hugo version.

Change

  • Change Because the print preview URLs were non deterministic for normal pages in comparison to page bundles, this is now changed. Each print preview is now accessible by adding a index.print.html to the default URL.

    You can revert this behavior by overwriting the print output format setting in your hugo.tomlto:

    hugo.
    [outputFormats]
      [outputFormats.print]
        baseName = 'index'
        isHTML = true
        mediaType = 'text/html'
        name = 'print'
        path = '_print'
        permalinkable = false
    outputFormats:
      print:
        baseName: index
        isHTML: true
        mediaType: text/html
        name: print
        path: _print
        permalinkable: false
    {
       "outputFormats": {
          "print": {
             "baseName": "index",
             "isHTML": true,
             "mediaType": "text/html",
             "name": "print",
             "path": "_print",
             "permalinkable": false
          }
       }
    }


5.0.0 (2022-07-05)

Breaking

  • Breaking The theme changed how JavaScript and CSS dependencies are loaded to provide a better performance. In case you’ve added own JavaScript code that depends on the themes jQuery implementation, you have to put it into a separate *.js file (if not already) and add the defer keyword to the script element. Eg.

    <script defer src="myscript.js"></script>

Change

  • Change The way archetypes are used to generate output has changed. The new systems allows you, to redefine existing archetypes or even generate your own ones.

    Your existing markdown files will still work like before and therefore you don’t need to change anything after the upgrade. Nevertheless, it is recommended to adapt your existing markdown files to the new way as follows:

    • for your home page, add the front matter parameter archetype = "home" and remove the leading heading

    • for all files containing the deprecated front matter parameter chapter = true, replace it with archetype = "chapter" and remove the leading headings

  • Change The front matter options pre / post were renamed to menuPre / menuPost. The old options will still be used if the new options aren’t set. Therefore you don’t need to change anything after the upgrade.

New

  • New Adding new partials heading-pre.html / heading-post.html and according front matter options headingPre / headingPost to modify the way your page`s main heading gets styled.

  • New The new shortcode math is available to add beautiful math and chemical formulae. See the documentation for available features. This feature will not work with Internet Explorer 11.

Version 4

See the changelog of this version for a detailed list of changes.
  • 0.126.0 Minimum required Hugo version

  • Breaking Change requiring action after upgrade

  • Change Change of behavior, may require action

  • New New behavior, often introducing new options


4.2.0 (2022-06-23)

Breaking

  • Breaking The second parameter for the include shortcode was switched in meaning and was renamed from showfirstheading to hidefirstheading. If you haven’t used this parameter in your shortcode, the default behavior hasn’t changed and you don’t need to change anything.

    If you’ve used the second boolean parameter, you have to rename it and invert its value to achieve the same behavior.

Change

  • Change Previously, if the tabs shortcode could not find a tab item because, the tabs ended up empty. Now the first tab is selected instead.

  • Change The landingPageURL was removed from hugo.toml. You can safely remove this as well from your configuration as it is not used anymore. The theme will detect the landing page URL automatically and will point to the project’s home page. If you want to support a different link, overwrite the logo.html partial.

New

  • New All shortcodes can now be also called from your partials. Examples for this are added to the documentation of each shortcode.

4.1.0 (2022-06-12)

New


4.0.0 (2022-06-05)

Breaking

  • Breaking The custom_css config parameter was removed from the configuration. If used in an existing installation, it can be achieved by overriding the custom-header.html template in a much more generic manner.

  • Breaking Because anchor hover color was not configurable without introducing more complexity to the variant stylesheets, we decided to remove --MAIN-ANCHOR-color instead. You don’t need to change anything in your custom color stylesheet as the anchors now get their colors from --MAIN-LINK-color and --MAIN-ANCHOR-HOVER-color respectively.

New

  • New All shortcodes now support named parameter. The positional parameter are still supported but will not be enhanced with new features, so you don’t need to change anything in your installation.

    This applies to expand, include, notice and siteparam.

  • New The button shortcode received some love and now has a parameter for the color style similar to other shortcodes.

  • New New colors --PRIMARY-color and --SECONDARY-color were added to provide easier modification of your custom style. Shortcodes with a color style can now have primary or secondary as additional values.

    These two colors are the default for other, more specific color variables. You don’t need to change anything in your existing custom color stylesheets as those variables get reasonable default values.

  • New Translation into Polish. This language is not supported for search.

  • New The documentation for all shortcodes were revised.

Version 3

See the changelog of this version for a detailed list of changes.
  • 0.126.0 Minimum required Hugo version

  • Breaking Change requiring action after upgrade

  • Change Change of behavior, may require action

  • New New behavior, often introducing new options


3.4.0 (2022-04-03)

Breaking

  • Breaking If you had previously overwritten the custom-footer.html partial to add visual elements below the content of your page, you have to move this content to the new partial content-footer.html. custom-footer.html was never meant to contain HTML other than additional styles and JavaScript.

New

  • New If you prefer expandable/collapsible menu items, you can now set collapsibleMenu=true in your hugo.toml. This will add arrows to all menu items that contain sub menus. The menu will expand/collapse without navigation if you click on an arrow.

  • New You can activate print support in your hugo.toml to add the capability to print whole chapters or even the complete site.

  • New Translation into Traditional Chinese.


3.3.0 (2022-03-28)

New

  • New Introduction of new CSS variables to set the font. The theme distinguishes between --MAIN-font for all content text and --CODE-font for inline or block code. There are additional overrides for all headings. See the theme variant generator of the exampleSite for all available variables.

  • New The new shortcode swagger is available to include a UI for REST OpenAPI specifications. See the documentation for available features. This feature will not work with Internet Explorer 11.


3.2.0 (2022-03-19)

Hugo 0.93.0

  • 0.93.0 This release requires a newer Hugo version.

Change

  • Change In this release the Mermaid JavaScript library will only be loaded on demand if the page contains a Mermaid shortcode or is using Markdown codefences. This changes the behavior of disableMermaid config option as follows: If a Mermaid shortcode or Markdown codefence is found, the option will be ignored and Mermaid will be loaded regardlessly.

    The option is still useful in case you are using scripting to set up your graph. In this case no shortcode or Markdown codefence is involved and the library is not loaded by default. In this case you can set disableMermaid=false in your front matter to force the library to be loaded. See the theme variant generator of the exampleSite for an example.

New

  • New Additional color variant variable --MERMAID-theme to set the variant’s Mermaid theme. This causes the Mermaid theme to switch with the color variant if it defers from the setting of the formerly selected color variant.

3.1.0 (2022-03-15)

New


3.0.0 (2022-02-22)

Breaking

  • Breaking We made changes to the menu footer. If you have your menu-footer.html partial overridden, you may have to review the styling (eg. margins/paddings) in your partial. For a reference take a look into the menu-footer.html partial that is coming with the exampleSite.

    This change was made to allow your own menu footer to be placed right after the so called prefooter that comes with the theme (containing the language switch and Clear history functionality).

  • Breaking We have changed the default colors from the original Learn theme (the purple menu header) to the Relearn defaults (the light green menu header) as used in the official documentation.

    This change will only affect your installation if you’ve not set the themeVariant parameter in your hugo.toml. If you still want to use the Learn color variant, you have to explicitly set themeVariant="learn" in your hugo.toml.

    Note, that this will also affect your site if viewed with Internet Explorer 11 but in this case it can not be reconfigured as Internet Explorer does not support CSS variables.

Change

  • Change Due to a bug, that we couldn’t fix in a general manner for color variants, we decided to remove --MENU-SEARCH-BOX-ICONS-color and introduced --MENU-SEARCH-color instead. You don’t need to change anything in your custom color stylesheet as the old name will be used as a fallback.

  • Change For consistency reasons, we renamed --MENU-SEARCH-BOX-color to --MENU-SEARCH-BORDER-color. You don’t need to change anything in your custom color stylesheet as the old name will be used as a fallback.

New

  • New With this release you are now capable to define your own dark mode variants.

    To make this possible, we have introduced a lot more color variables you can use in your color variants. Your old variants will still work and don’t need to be changed as appropriate fallback values are used by the theme. Nevertheless, the new colors allow for much more customization.

    To see what’s now possible, see the new variants relearn-dark and neon that are coming with this release.

  • New To make the creation of new variants easier for you, we’ve added a new interactive theme variant generator. This feature will not work with Internet Explorer 11.

  • New You can now configure multiple color variants in your hugo.toml. In this case, the first variant is the default chosen on first view and a variant selector will be shown in the menu footer. See the documentation for configuration.

    Note, that the new variant selector will not work with Internet Explorer 11 as it does not support CSS variables. Therefore, the variant selector will not be displayed with Internet Explorer 11.

Version 2

See the changelog of this version for a detailed list of changes.
  • 0.126.0 Minimum required Hugo version

  • Breaking Change requiring action after upgrade

  • Change Change of behavior, may require action

  • New New behavior, often introducing new options


2.9.0 (2021-11-19)

Breaking

  • Breaking This release removes the themes implementation of ref/relref in favor for Hugo’s standard implementation. This is because of inconsistencies with the themes implementation. In advantage, your project becomes standard compliant and exchanging this theme in your project to some other theme will be effortless.

    In a standard compliant form you must not link to the *.md file but to its logical name. You’ll see, referencing other pages becomes much easier. All three types result in the same reference:

    Type Non-Standard Standard
    Branch bundle configuration/reference/_index.md configuration/reference
    Leaf bundle configuration/reference/index.md configuration/reference
    Page configuration/reference.md configuration/reference

    If you’ve linked from a page of one language to a page of another language, conversion is a bit more difficult but Hugo got you covered as well.

    Also, the old themes implementation allowed refs to non-existing content. This will cause Hugo’s implementation to show the error below and abort the generation. If your project relies on this old behavior, you can reconfigure the error handling of Hugo’s implementation.

    In the best case your usage of the old implementation is already standard compliant and you don’t need to change anything. You’ll notice this very easily once you’ve started hugo server after an upgrade and no errors are written to the console.

    You may see errors on the console after the update in the form:

    ERROR 2021/11/19 22:29:10 [en] REF_NOT_FOUND: Ref "configuration/reference/_index.md": "hugo-theme-relearn\exampleSite\content\_index.en.md:19:22": page not found

    In this case, you must apply one of two options:

    1. Start up a text editor with regular expression support for search and replace. Search for (ref\s+"[^"]*?)(?:/_index|/index)?(?:\.md)?(#[^"]*?)?" and replace it by $1$2" in all *.md files. This is the recommended choice.

    2. Copy the old implementation files theme/hugo-theme-relearn/layouts/shortcode/ref.html and theme/hugo-theme-relearn/layouts/shortcode/relref.html to your own projects layouts/shortcode/ref.html and layouts/shortcode/relref.html respectively. This is not recommended as your project will still rely on non-standard behavior afterwards.


2.8.0 (2021-11-03)

Change

  • Change Although never officially documented, this release removes the font Novacento/Novecento. If you use it in an overwritten CSS please replace it with Work Sans. This change was necessary as Novacento did not provide all Latin special characters and lead to mixed styled character text eg. for Czech.

New

  • New The theme now supports favicons served from static/images/ named as favicon or logo in SVG, PNG or ICO format out of the box. An overridden partial layouts/partials/favicon.html may not be necessary anymore in most cases.

  • New You can hide the table of contents menu for the whole site by setting the disableToc option in your hugo.toml. For an example see the example configuration.


2.7.0 (2021-10-24)

New

  • New Optional second parameter for notice shortcode to set title in box header.

2.6.0 (2021-10-21)

New

  • New Your site can now be served from a subdirectory if you set baseURL in your hugo.toml. See the documentation for a detailed example.

2.5.0 (2021-10-08)

Change

  • Change New colors --CODE-BLOCK-color and --CODE-BLOCK-BG-color were added to provide a fallback for Hugo’s syntax highlighting in case no language was given or the language is unsupported. Ideally the colors are set to the same values as the ones from your chosen chroma style.

2.4.0 (2021-10-07)

Change

  • Change Creation of customized stylesheets was simplified down to only contain the CSS variables. Everything else can and should be deleted from your custom stylesheet to assure everything works fine. For the predefined stylesheet variants, this change is already included.

New

  • New Hidden pages are displayed by default in their according tags page. You can now turn off this behavior by setting disableTagHiddenPages=true in your hugo.toml.

  • New You can define the expansion state of your menus for the whole site by setting the alwaysopen option in your hugo.toml. Please see further documentation for possible values and default behavior.

  • New New front matter ordersectionsby option to change immediate children sorting in menu and children shortcode. Possible values are title or weight.

  • New Alternate content of a page is now advertised in the HTML meta tags. See Hugo documentation.


2.3.0 (2021-09-13)

Hugo 0.81.0

  • 0.81.0 This release requires a newer Hugo version.

New

  • New Showcase multilanguage features by providing a documentation translation “fer us pirrrates”. There will be no other translations besides the original English one and the Piratish one due to maintenance constraints.

2.2.0 (2021-09-09)

New

  • New Hidden pages are displayed by default in the sitemap generated by Hugo and are therefore visible for search engine indexing. You can now turn off this behavior by setting disableSeoHiddenPages=true in your hugo.toml.

2.1.0 (2021-09-07)

Hugo 0.69.0

  • 0.69.0 This release requires a newer Hugo version.

Change

  • Change In case the site’s structure contains additional *.md files not part of the site (eg files that are meant to be included by site pages - see CHANGELOG.md in the exampleSite), they will now be ignored by the search.

New

  • New Hidden pages are indexed for the site search by default. You can now turn off this behavior by setting disableSearchHiddenPages=true in your hugo.toml.

  • New If a search term is found in an expand shortcode, the expand will be opened.

  • New The menu will scroll the active item into view on load.


2.0.0 (2021-08-28)

Change

  • Change Syntax highlighting was switched to the built in Hugo mechanism. You may need to configure a new stylesheet or decide to roll you own as described on in the Hugo documentation

  • Change In the predefined stylesheets there was a typo and --MENU-HOME-LINK-HOVERED-color must be changed to --MENU-HOME-LINK-HOVER-color. You don’t need to change anything in your custom color stylesheet as the old name will be used as a fallback.

  • Change --MENU-HOME-LINK-color and --MENU-HOME-LINK-HOVER-color were missing in the documentation. You should add them to your custom stylesheets if you want to override the defaults.

  • Change Arrow navigation and children shortcode were ignoring setting for ordersectionsby. This is now changed and may result in different sorting order of your sub pages.

  • Change If hidden pages are accessed directly by typing their URL, they will be exposed in the menu.

  • Change A page without a title will be treated as hidden=true.

New

  • New You can define the expansion state of your menus in the front matter. Please see further documentation for possible values and default behavior.

  • New New partials for defining pre/post content for menu items and the content. See documentation for further reading.

  • New Shortcode children with new parameter containerstyle.

  • New New shortcode include to include arbitrary file content into a page.

Version 1

See the changelog of this version for a detailed list of changes.
  • 0.126.0 Minimum required Hugo version

  • Breaking Change requiring action after upgrade

  • Change Change of behavior, may require action

  • New New behavior, often introducing new options


1.2.0 (2021-07-26)

New

  • New Shortcode expand with new parameter to open on page load.

1.1.0 (2021-07-02)

Breaking

  • Breaking Mermaid diagrams can now be panned and zoomed. This isn’t configurable yet.

New

  • New Mermaid config options can be set in hugo.toml.

1.0.0 (2021-07-01)

Hugo 0.65.0

  • 0.65.0 The requirement for the Hugo version of this theme is the same as for the Learn theme version 2.5.0 on 2021-07-01.

New

  • New Initial fork of the Learn theme based on Learn 2.5.0 on 2021-07-01. This introduces no new features besides a global rename to Relearn and a new logo. For the reasons behind forking the Learn theme, see this comment in the Learn issues.

Changelog

β˜… What's new in this version β˜…

Version 7

7.0.1 (2024-10-15)

Fixes

  • [bug] search: search page not generated with renderer.unsafe #929

7.0.0 (2024-10-13)

Enhancements

  • [feature][change] logo: move Relearn logo to exampleSite #924
  • [feature][change] math: adhere to Hugo’s default config params #923
  • [feature][change] theme: replace font #922
  • [feature][breaking] theme: reduce build time #685

Fixes

  • [bug] theme: remove duplicate path warning #926

Maintenance

  • [task] theme: remove author deprecation warning #919
  • [task] theme: remove deprecation waring for usage of .Sites.First #912
  • [task][breaking] theme: restructure code #891
  • [task][breaking] search: improve generation of dedicated search page #888
  • [task] theme: remove warning for usage of .Site.IsMultiLingual #877
  • [task][breaking] roadmap: upcoming major changes for 7.0.0 #715


Version 6

6.4.1 (2024-10-11)

Fixes

  • [bug] highlight: remove additional newlines from code if copied from cursor selection #925

6.4.0 (2024-09-12)

Enhancements

  • [feature] notice: support user defined box styles #913
  • [feature] frontmatter: add expanded parameter for shortcodes #911
  • [feature] resources: add expanded parameter #908
  • [feature][change] notice: collapse borders if single code block is displayed #906

Fixes

  • [bug] include: don’t erroneously remove headings if hidefirstheading=true #914

Maintenance

  • [task] build: add link for migration into changelog #915
  • [task] shortcodes: fix whitespace issues #907


6.3.0 (2024-09-03)

Enhancements

  • [feature] theme: support Obsidian styled alerts #903
  • [feature] notice: add expander to box title #901

Fixes

  • [bug] children: fix sort parameter #898
  • [bug] mermaid: classDiagram breaks when using «interface» #895
  • [bug] toc: don’t show toc button if empty #893

Maintenance

  • [task] mermaid: update to 11.1.0 #904
  • [task][change] expand: rename open parameter to expanded #902
  • [task] i18n: update Arabic translation #900


6.2.0 (2024-08-26)

Enhancements

  • [feature][change] anchor: add option to scroll into view #886
  • [feature] theme: support for GitHub styled alerts #885

Fixes

  • [bug] arrownav: avoid rude event handling for form elements #887

Maintenance

  • [task] 404: move styles to separate file #889


6.1.1 (2024-08-02)

Fixes

  • [bug] link: link resolving stopped working in certain configurations #882

6.1.0 (2024-08-02)

Enhancements

  • [feature][change] assetbuster: use asset buster for all resources #875
  • [feature] theme: sync to Hugo changes for PublishDate #872
  • [feature] theme: allow errorlevel override on page level #870
  • [feature] relref: provide shortcodes to lift certain restrictions #864
  • [feature] openapi: adjust to Hugo’s build-in link render hook #860
  • [feature][change] include: adjust to Hugo’s build-in link render hook #859

Fixes

  • [bug] variant: auto variant references potentially wrong chroma style #873
  • [bug] schema: sync to Hugo changes for LanguageCode #866
  • [bug] taxonomy: simplify code #852
  • [bug] alias: index.html has displays error in content #851

Maintenance

  • [task] icon: update Font Awesome to 6.6.0 #881
  • [task] math: update MathJax to 3.2.2 #880
  • [task] openapi: update swagger-ui to 5.17.14 #879
  • [task] mermaid: update to 10.9.1 #878
  • [task] theme: remove special cases for LanguageCode #861
  • [task] link: adjust to Hugo’s build-in code #858
  • [task] image: adjust to Hugo’s build-in code #857
  • [task] opengraph: sync to Hugo’s implementation #856
  • [task] i18n: improve file naming #848


6.0.0 (2024-04-27)

Enhancements

  • [feature][breaking] theme: unify description #845
  • [feature] schema: add schema support in meta data #844
  • [feature] include: use Hugo’s resources #835
  • [feature] math: allow to work with Hugo’s passthrough configuration #832
  • [feature] i18n: add Romanian translation #828
  • [feature][breaking] menu: remove menuTitle frontmatter #714
  • [feature][breaking] theme: end support for Internet Explorer 11 #584

Fixes

  • [bug] frontmatter: move frontmatter config for exampleSite out of root #843
  • [bug] images: color outline using primary color #838
  • [bug][breaking] variant: avoid Hugo permission errors on build #831
  • [bug] theme: unwanted paragraph break with AsciiDoc #829

Maintenance

  • [task][breaking] swagger: remove shortcode #847
  • [task][breaking] search: remove JSON outputformat for search index #846
  • [task] theme: sync to Hugo’s implementation #841
  • [task][change] fontawesome: update to 6.5.2 #834


Older Versions

Subsections of Changelog

Version 5

β˜… What's new in this version β˜…

5.27.0 (2024-04-07)

Enhancements

  • [feature] theme: simplify title generation #825
  • [feature] theme: adjust to Hugo’s build-in code #824
  • [feature][change] link: warn if fragment is not found #823
  • [feature] theme: add styling for selected HTML elements #822
  • [feature] a11y: improve search box #821
  • [feature][change] dependencies: make loader more versatile #820
  • [feature] nav: scroll to prev/next heading using keyboard shortcut #819
  • [feature] breadcrumb: use .LinkTitle instead of .Title if available #816

Fixes

  • [bug] scrollbar: scroll bar in side menu gets stuck in dragged state on mobile #808


5.26.2 (2024-03-18)

Enhancements

  • [feature] icons: use fixed width to ease layout #812

Fixes

  • [bug] search: broken since version 5.26.1 #813
  • [bug] search: fix result links for pages in root #810

5.26.1 (2024-03-17)

Fixes

  • [bug] mermaid: show reset button after pan #807
  • [bug] openapi: make it run for file:// protocol #806
  • [bug] theme: fix relative path detection if relativeURLs=false #804

5.26.0 (2024-03-16)

Enhancements

  • [feature] image: add lazy loading image effect option #803
  • [feature] render-hook: support Markdown attributes #795
  • [feature] theme: support full page width #752

Fixes

  • [bug] clipboard: fix broken style if block code is in table #790
  • [bug] nav: browser back navigation does not jump to the correct position #509

Maintenance

  • [task] build: update all available actions to nodejs 20 #802
  • [task] openapi: update swagger-ui to 5.11.10 #798
  • [task] mermaid: update to 10.9.0 #797


5.25.0 (2024-02-29)

Enhancements

  • [feature][change] theme: print out GitInfo in page footer if configured #786
  • [feature][change] resources: new shortcode to deprecate attachments shortcode #22

Fixes

  • [bug] swagger: fix compat warning #787


5.24.3 (2024-02-28)

Fixes

  • [bug] theme: avoid crash on 404 if author settings want to warn #785

5.24.2 (2024-02-24)

Enhancements

  • [feature] image: adjust to Hugo 0.123 #777

Fixes

  • [bug] link: resolve fragments #775

5.24.1 (2024-02-18)

Enhancements

  • [feature] link: make resolution reporting configurable #774

5.24.0 (2024-02-17)

Enhancements

  • [feature] theme: compatibility with Hugo 0.123 #771
  • [feature] topbar: support editURL in frontmatter #764
  • [feature] menu: use –MENU-WIDTH-S to adjust mobile flyout #761
  • [feature] figure: support built-in shortcode #746
  • [feature] theme: make heading a template #744
  • [feature] taxonomy: make arrow nav browse through terms #742
  • [feature] theme: switch from config.toml to hugo.toml #741
  • [feature] button: make non-interactive if used as mock #740
  • [feature][change] topbar: allow text for button #739
  • [feature] theme: run hugo demo site without warning #736
  • [feature] menu: make swipe handler passive #735
  • [feature] i18n: support standard Hugo options #733
  • [feature] a11y: show tab focus on images #730
  • [feature] a11y: improve discovering links on keyboard navigation #726
  • [feature][change] variant: increase contrast for light themes #722
  • [feature] theme: break build if minimum Hugo version is not matched #719
  • [feature] taxonomy: humanize term on missing term title #713

Fixes

  • [bug] taxonomy: display translated title #772
  • [bug] highlight: fix codefence syntax in Hugo >= 0.121.0 #749
  • [bug] link: fix links to pages containing dots in their name #748
  • [bug] image: get resource images if link is prefixed with ./ #747
  • [bug] theme: switch dependency colors on OS color scheme change #745
  • [bug] clipboard: fix O(nΒ²) buttons #738
  • [bug] button: fix whitespacing in FF #737
  • [bug] i18n: fix warning messages for zh-CN #732
  • [bug] mermaid: fix zoom button #725
  • [bug] theme: fix JS errors on hugo --minifiy #724
  • [bug] include: fix whitespacing in codefences #723


5.23.2 (2023-11-03)

Enhancements

  • [feature] taxonomy: improve taxonomy page #712
  • [feature] taxonomy: warn on missing term title #709

Fixes

  • [bug] taxonomy: fix sorting of terms on content pages #710

5.23.1 (2023-10-30)

Enhancements

  • [feature] taxonomy: improve term page #705

Fixes

  • [bug] variant: fix typo in chroma-learn.css #708
  • [bug] links: ignore local markdown links linking to files with extension #707

5.23.0 (2023-10-29)

Enhancements

  • [feature] taxonomy: allow for content on term pages #701
  • [feature] theme: write full file path on warnings #699
  • [feature] theme: show anchor link and copy to clipboard button on mobile #697
  • [feature][change] config: adjust to changes in Hugo 0.120 #693
  • [feature] variants: add more contrast to neon #692
  • [feature] mermaid: only show zoom reset button if zoomed #691
  • [feature] menu: add additional sort options #684
  • [feature] theme: add social media meta information #683
  • [feature] theme: simplify additional JS dependencies #682
  • [feature] links: warn if ref/relref is used falsly #681
  • [feature] menu: make width configurable #677
  • [feature] tabs: use color for link of inactive tabs #675
  • [feature] taxonomy: modularize term list generation #671
  • [feature] theme: remove warnings with hugo --printI18nWarnings #670
  • [feature] theme: implement portable linking #377

Fixes

  • [bug] links: extra space before link text #700
  • [bug] mermaid: reset zoom correctly #690
  • [bug] theme: fix mobile layout for width=48rem #676
  • [bug] frontmatter: resemble documented shortcode style #672
  • [bug] taxonomy: display terms in pages if removePathAccents=true #669

Maintenance

  • [task] mermaid: update mermaid to 10.6.0 #703
  • [task] openapi: update swagger-ui to 5.9.1 #702


5.22.1 (2023-10-02)

Enhancements

  • [feature] i18n: add Swahili translation #666
  • [feature] math: hide unrendered math #663
  • [feature] tabs: improve a11y by removing duplicate hidden title #662
  • [feature] mermaid: improve zoom UX #659

Fixes

  • [bug] variant: fix sidebar-flyout borders color for zen #667
  • [bug] clipboard: fix RTL location of tooltip #661
  • [bug] clipboard: ignore RTL for code #660
  • [bug] expand: fix aria-controls #658
  • [bug] theme: fix id generation for markdownified titles #657
  • [bug] mermaid: avoid graph bombing on hugo –minify #656
  • [bug] mermaid: fix width for some graphs #655

5.22.0 (2023-09-26)

Enhancements

  • [feature] mermaid: add pan&zoom reset #651
  • [feature] markdown: add interlace color for tables #648
  • [feature] search: add breadcrumb to dedicated search results #647
  • [feature][change] menu: optionally disable index pages for sections #642

Fixes

  • [bug] variants: restore generator zoom #650
  • [bug] clipboard: malused Fontawesome style #649
  • [bug][change] theme: avoid id collisions between headings and theme #646
  • [bug] theme: remove HTML validation errors #644
  • [bug] breadcrumb: remove superflous whitespace between items #643


5.21.0 (2023-09-18)

Enhancements

  • [feature] topbar: make buttons configurable #639
  • [feature][change] menu: fix footer padding #637

Fixes

  • [bug] breadcrumb: don’t ignore spaces for separator #636
  • [bug] theme: fix snyk code issues #633
  • [bug] images: apply image effects to lightbox images #631

Maintenance

  • [task] openapi: update to swagger 5.7.2 #641


5.20.0 (2023-08-26)

Enhancements

  • [feature][change] theme: support for colored borders between menu and content #626
  • [feature] image: allow option to apply image effects globally #623
  • [feature][change] openapi: switch to light syntaxhighlighting where applicable #621
  • [feature] images: document usage of images with links #576

Fixes

  • [bug] highlight: fix rendering for Hugo < 0.111 #630
  • [bug] search: remove link underline on dedicated search page #627
  • [bug] highlight: don’t switch to block view if hl_inline=true #618
  • [bug] variant: minor adjustments to zen variants #617
  • [bug] mermaid: lazy render graph if it is initially hidden #187

Maintenance

  • [task] openapi: update to swagger 5.4.1 #620


5.19.0 (2023-08-12)

Enhancements

  • [feature] highlight: add title parameter #616
  • [feature] variant: signal variant switch as event #614
  • [feature] variant: add zen variant in light and dark #613
  • [feature] i18n: add Hungarian translation #604
  • [feature] mermaid: update to 10.3.0 #601

Fixes

  • [bug] siteparam: avoid halt if param is a map/slice #611
  • [bug] mermaid: fix broken zoom since update to v10 #608
  • [bug] mermaid: variant generator diagram does not respond to events #607
  • [bug] print: avoid chroma leak for relearn-dark #605

Maintenance

  • [task] mermaid: update to 10.3.1 #610


5.18.0 (2023-07-27)

Enhancements

  • [feature][change] shortcodes: add more deprecation warnings #598
  • [feature][change] shortcodes: change context parameter to page if called as partial #595
  • [feature] siteparam: support nested parameters and text formatting #590
  • [feature][change] a11y: improve when tabbing through links #581

Fixes

  • [bug] openapi: inherit RTL setting from Hugo content #600
  • [bug] 404: fix display in RTL #597
  • [bug] highlight: fix position of copy-to-clipboard button in RTL #594
  • [bug] openapi: fix spelling #593
  • [bug] search: fix typo in output format #591
  • [bug] tabs: fix tab selection by groupid #582
  • [bug] theme: restore compat with Hugo 0.95.0 #580
  • [bug][change] theme: improve display of links #577


5.17.1 (2023-06-22)

Enhancements

  • [feature][change] highlight: make copy to clipboard appear on hover #574

5.17.0 (2023-06-22)

Enhancements

  • [feature] highlight: add configurable line breaks #169

Fixes

  • [bug] theme: support Hugo 0.114.0 #573
  • [bug] taxonomy: fix number tags #570
  • [bug] highlight: improve copy to clipboard #569


5.16.2 (2023-06-10)

Enhancements

  • [feature] theme: revamp 404 page #566

5.16.1 (2023-06-09)

Enhancements

  • [feature] theme: add deprecation warnings #565

Fixes

  • [bug] mermaid: allow for YAML frontmatter inside of graph #564
  • [bug] alias: fix redirect URLs in case of empty BaseURL #562

5.16.0 (2023-06-08)

Enhancements

  • [feature] tabs: add title and icon option #552
  • [feature] shortcodes: add style option to mimic code box color scheme #551
  • [feature] tabs: support color options #550
  • [feature] favicon: add light & dark option for OS’s preferred color scheme #549

Fixes

  • [bug] icon: remove whitespace on start #560
  • [bug] shortcodes: avoid superflous margin at start and end of content #558
  • [bug] expand: fix html encoding of finishing content tag #557
  • [bug] icon: fix ouput “raw HTML omitted” with goldmark config unsafe=false #555


5.15.2 (2023-05-29)

Enhancements

  • [feature] taxonomy: add support for category default taxonomy #541

Fixes

  • [bug] attachments: work for Hugo < 0.112 #546

5.15.1 (2023-05-25)

Fixes

  • [bug] shortcodes: intermediately use random ids instead of .Ordinal #543

5.15.0 (2023-05-25)

Enhancements

  • [feature] tab: new shortcode to display single tab #538
  • [feature][change] tabs: treat groupid as unique if not set #537
  • [feature] expand: indent expanded content #536
  • [feature] notice: make boxes more prominent #535

Fixes

  • [bug] attachments: fix build error since Hugo 0.112 #540

Maintenance

  • [task] chore: update Mermaid to 9.4.3 #534
  • [task] mermaid: update to 10.2.0 #499


5.14.3 (2023-05-20)

Fixes

  • [bug] tags: show taxonomy toc for standard installation #533

5.14.2 (2023-05-20)

Fixes

  • [bug] tags: translate breadcrumb and title for taxonomy #532

5.14.1 (2023-05-20)

No changelog for this release.


5.14.0 (2023-05-19)

Enhancements

  • [feature] tags: improve search index for tags #531
  • [feature] tags: increase readability of taxonomy pages #530
  • [feature] nav: make breadcrumb separator configurable #529
  • [feature] i18n: add translation for default taxonomies #528
  • [feature] theme: set appropriate defaults for all theme specific params #516
  • [feature] theme: allow to display tags below article #513

Fixes

  • [bug] shortcode: make .context always a page #527


5.13.2 (2023-05-17)

Fixes

  • [bug] print: enable print for pages with _build options #522

5.13.1 (2023-05-16)

Fixes

  • [bug] openapi: allow toc to scroll page #526

5.13.0 (2023-05-14)

Enhancements

  • [feature][change] openapi: replace implementation with swagger-ui #523

Fixes

  • [bug] variant: avoid leaking shadows in neon print style #524


5.12.6 (2023-05-04)

Enhancements

  • [feature] theme: better HTML titles and breadcrumbs for search and tag pages #521

Fixes

  • [bug] menu: avoid hiding of expander on hover when active item has children #520
  • [bug] menu: showVisitedLinks not working for some theme variants #518
  • [bug] theme: fix resource URLs for 404 page on subdirectories #515

5.12.5 (2023-03-28)

Fixes

  • [bug] expand: not properly exanded when used in bullet point list #508

5.12.4 (2023-03-24)

Fixes

  • [bug] theme: disableExplicitIndexURLs param is not working as expected #505

5.12.3 (2023-03-14)

Fixes

  • [bug] attachments: fix links if only one language is present #503
  • [bug] shortcodes: allow markdown for title and content #502

5.12.2 (2023-03-03)

Fixes

  • [bug] menu: fix state for alwaysopen=false + collapsibleMenu=false #498

5.12.1 (2023-02-26)

Enhancements

  • [feature] variant: add relearn bright theme #493

Fixes

  • [bug] generator: fix setting of colors #494

5.12.0 (2023-02-24)

Enhancements

  • [feature] frontmatter: support VSCode Front Matter extension #481
  • [feature] theme: make expand and image ids stable #477
  • [feature] variant: set scrollbar color to dark for dark variants #471
  • [feature] i18n: add full RTL support #470
  • [feature] piratify: fix some quirks, arrr #469
  • [feature][change] theme: optimization for huge screen sizes #466

Fixes

  • [bug] i18n: write code ltr even for rtl languages #492
  • [bug] anchor: fix link in FF when served from file system #482
  • [bug] shortcodes: don’t break build and render for invalid parameters #480
  • [bug] nav: restore scroll position on browser back #476
  • [bug] variant: avoid style leak for auto style #473

Maintenance

  • [task] build: add imagebot #485


5.11.2 (2023-02-07)

Fixes

  • [bug] tabs: nested tabs content is not displayed #468

5.11.1 (2023-02-06)

Fixes

  • [bug] variant: include missing theme-auto.css in distribution #467

5.11.0 (2023-02-05)

Enhancements

  • [feature] i18n: add Czech translation #455
  • [feature][change] lightbox: switch to CSS-only solution #451
  • [feature][change] variant: add support for prefers-color-scheme #445
  • [feature][change] expand: refactor for a11y #339
  • [feature][change] mermaid: make zoom configurable #144

Fixes

  • [bug] swagger: avoid errors when using invalid rapi-doc fragment ids #465
  • [bug] search: fix oddities in keyboard handling #463
  • [bug] badge: fix text color for IE11 #462
  • [bug] mermaid: rerender graph if search term is present and variant is switched #460
  • [bug] tags: show tag on pages when tag has space #459
  • [bug] edit: remove double slash on root page link #450

Maintenance

  • [task] build: add moving version tags #453
  • [task][change] theme: remove jQuery #452
  • [task] build: check for release notes before release #448


5.10.2 (2023-01-25)

Fixes

  • [bug] nav: fix breadcrumb for huge installations #446

5.10.1 (2023-01-25)

Fixes

  • [bug] print: fix image links with relative path #444

5.10.0 (2023-01-25)

Enhancements

  • [feature] shortcodes: support for accent color #440
  • [feature] shortcodes: add color parameter where applicable #438
  • [feature] theme: announce translations as alternate links #422

Fixes

  • [bug] nav: fix breadcrumbs for deeply nested sections #442
  • [bug] theme: improve whitespacing in tables #441


5.9.4 (2023-01-23)

Fixes

  • [bug] variant: fix search icon and text color #437

5.9.3 (2023-01-22)

Fixes

  • [bug] nav: fix left/right navigation for horizontal scrolling #435
  • [bug][breaking] theme: allow pages on top level #434

Maintenance

  • [task] build: switch to wildcard version of actions #428

5.9.2 (2022-12-30)

Fixes

  • [bug] search: apply dependency scripts for Hindi and Japanese #427

5.9.1 (2022-12-23)

Enhancements

  • [feature] theme: make external link target configurable #426

5.9.0 (2022-12-23)

Enhancements

  • [feature][change] theme: open external links in separate tab #419
  • [feature] theme: make it a Hugo module #417

Fixes

  • [bug][change] attachments: fix incorrect links for defaultContentLanguageInSubdir=true #425


5.8.1 (2022-12-11)

Fixes

  • [bug] theme: fix alias for home page if defaultContentLanguageInSubdir=true #414

5.8.0 (2022-12-08)

Enhancements

  • [feature] icon: add new shortcode #412
  • [feature] theme: style and document markdown extensions #411
  • [feature] badge: add new shortcode #410
  • [feature] theme: add accent color #409

Fixes

  • [bug] theme: fix spacing for tag flyout in FF #413


5.7.0 (2022-11-29)

Enhancements

  • [feature] button: refactor for a11y #372

Fixes

  • [bug] search: don’t freeze browser on long search terms #408
  • [bug] search: fix searchbox placeholder color in FF and IE #405
  • [bug][change] i18n: rename Korean translation from country to lang code #404

Maintenance

  • [task] search: update lunr languages to 1.10.0 #403


5.6.6 (2022-11-23)

Enhancements

  • [feature] search: make build and js forgiving against config errors #400

Fixes

  • [bug] variant: minor color adjustments #402
  • [bug] variant: fix generator for use of neon #401

5.6.5 (2022-11-19)

Fixes

  • [bug] menu: relax usage of background color #399

5.6.4 (2022-11-19)

Fixes

  • [bug] theme: make alias pages usable by file:// protocol #398

5.6.3 (2022-11-19)

Fixes

  • [bug] theme: be compatible with Hugo >= 0.95.0 #397

5.6.2 (2022-11-19)

Fixes

  • [bug] theme: build breaks sites without “output” section in config #396

5.6.1 (2022-11-19)

Fixes

  • [bug] theme: fix image distortion #395

5.6.0 (2022-11-18)

Enhancements

  • [feature] toc: improve keyboard handling #390
  • [feature] search: improve keyboard handling #387
  • [feature] search: add dedicated search page #386
  • [feature] theme: make creation of generator meta tag configurable #383
  • [feature] theme: increase build performance #380

Fixes

  • [bug] mermaid: avoid leading whitespace #394
  • [bug] theme: fix build errors when referencing SVGs in markdown #393
  • [bug] variant: avoid neon to leak into IE11 fallback #392
  • [bug] theme: fix urls for file:// protocol in sitemap #385
  • [bug] theme: add id to h1 elements #384
  • [bug] rss: fix display of hidden subpages #382
  • [bug] nav: fix key navigation when pressing wrong modifiers #379

Maintenance

  • [task] mermaid: update to version 9.2.2 #391


5.5.3 (2022-11-10)

Fixes

  • [bug] tags: fix non-latin tag display on pages #378

5.5.2 (2022-11-08)

Fixes

  • [bug] theme: fix typo in 404.html #376
  • [bug] theme: allow menu items and children to be served by file:// protocol #375

5.5.1 (2022-11-07)

Fixes

  • [bug] theme: fix overflowing issue with anchors and tooltips #364

5.5.0 (2022-11-06)

Enhancements

  • [feature][change] theme: optimize page load for images #304

Fixes

  • [bug] theme: fix context in render hooks #373
  • [bug] print: make canonical URL absolute #371


5.4.3 (2022-11-05)

Enhancements

  • [feature] history: refactor for a11y #341

Fixes

  • [bug] theme: fix multilang links when site served from subdirectory #370

5.4.2 (2022-11-05)

Maintenance

  • [task] build: change set-output to env vars #348

5.4.1 (2022-11-05)

Fixes

  • [bug] mermaid: fix Gantt chart width #365

5.4.0 (2022-11-01)

Enhancements

  • [feature] math: allow passing of parameters with codefence syntax #363
  • [feature] i18n: add Finnish translation #361
  • [feature] mermaid: allow passing of parameters with codefence syntax #360
  • [feature] i18n: support RTL #357
  • [feature][change] button: add option for target #351
  • [feature][change] theme: allow to be served by file:// protocol #349


5.3.3 (2022-10-09)

Fixes

  • [bug] archetypes: fix frontmatter on home.md template #346

5.3.2 (2022-10-08)

Fixes

  • [bug] nav: change defunct keyboard shortcuts #344

5.3.1 (2022-10-08)

Enhancements

  • [feature] i18n: update Spanish translation #343
  • [feature] theme: option to align images #327

5.3.0 (2022-10-07)

Enhancements

  • [feature] expander: improve whitespace between label and content #338
  • [feature] swagger: improve print version #333

Fixes

  • [bug] print: fix links of subsections #340
  • [bug] theme: remove W3C validator errors #337
  • [bug] children: remove unused page parameter from docs #336
  • [bug] print: remove menu placeholder in Firefox #335
  • [bug] swagger: fix download button overflow #334
  • [bug][change] a11y: remove WCAG errors where applicable #307


5.2.4 (2022-10-02)

Fixes

  • [bug] theme: remove HTML5 validator errors #329

5.2.3 (2022-09-12)

Fixes

  • [bug] print: chapter pages overwrite font-size #328

5.2.2 (2022-08-23)

Fixes

  • [bug] print: fix urls for uglyURLs=true #322

5.2.1 (2022-08-05)

Enhancements

  • [feature] i18n: improve Japanese translation #318

Fixes

  • [bug] nav: prev/next ignores ordersectionby #320

Maintenance

  • [task] task: bump Hugo minimum requirement to 0.95 #319

5.2.0 (2022-08-03)

Enhancements

  • [feature][change] menu: expand collapsed menus if search term is found in submenus #312

Fixes

  • [bug] print: switch mermaid and swagger style before print #316
  • [bug] theme: fix chapter margins on big screens #315


5.1.2 (2022-07-18)

Fixes

  • [bug] print: reset mermaid theme to light #313
  • [bug] mermaid: header is showing up in FF #311

5.1.1 (2022-07-15)

Fixes

  • [bug] tags: don’t count tags if page is hidden #310

5.1.0 (2022-07-15)

Enhancements

  • [feature][change] print: make print url deterministic #309
  • [feature] theme: allow overriding partials for output formats #308


5.0.3 (2022-07-07)

Fixes

  • [bug] ie11: no styles after rework of archetypes #306

5.0.2 (2022-07-07)

Fixes

  • [bug] theme: load CSS if JS is disabled #305

5.0.1 (2022-07-07)

Enhancements

  • [feature][breaking] theme: optimize loading of js and css #303

5.0.0 (2022-07-05)

Enhancements

  • [feature][change] archetypes: modularize rendering #300
  • [feature] history: don’t reload page when history gets cleared #299
  • [feature] menu: replace expander by fontawesome chevrons #296
  • [feature] theme: align content with topbar icon limits #290
  • [feature] button: allow for empty href #288
  • [feature] i18n: make Simplified Chinese the standard language for the zn code #287
  • [feature] clipboard: move head styles to stylesheet #286
  • [feature] math: add mathjax rendering #235
  • [feature] theme: allow for page heading modification #139

Fixes

  • [bug] favicon: fix URL if site resides in subdirectory #302
  • [bug] code: show copy-to-clipboard marker for blocklevel code #298
  • [bug] menu: make active expander visible on hover #297
  • [bug] print: disable arrow navigation #294
  • [bug] print: add missing page break after index or section #292
  • [bug] theme: use more space on wide screens #291
  • [bug] theme: fix size of chapter heading #289

Maintenance

  • [task] chore: update RapiDoc 9.3.3 #301
  • [task] chore: update Mermaid 9.1.3 #293

Version 4

β˜… What's new in this version β˜…

4.2.5 (2022-06-23)

Fixes

  • [bug] swagger: javascript code does not load in documentation #285
  • [bug] children: descriptions not working #284
  • [bug] print: fix empty page for shortcut links #283

4.2.4 (2022-06-23)

Fixes

  • [bug] theme: fix url for logo and home button #282

4.2.3 (2022-06-23)

Fixes

  • [bug][breaking] include: second parameter is ignored #281

4.2.2 (2022-06-23)

No changelog for this release.


4.2.1 (2022-06-23)

No changelog for this release.


4.2.0 (2022-06-23)

Enhancements

  • [feature][change] tabs: don’t change tab selection if panel does not contain item #279
  • [feature] shortcodes: convert to partials #277

Fixes

  • [bug] swagger: avoid builtin syntaxhighlighting #280
  • [bug] search: fix console message for missing lunr translations #278
  • [bug] tabs: fix wrapping when having many tabs #272


4.1.1 (2022-06-18)

Fixes

  • [bug] notice: fix layout when content starts with heading #275

4.1.0 (2022-06-12)

Enhancements

  • [feature] i18n: support multilang content #271


4.0.5 (2022-06-12)

Fixes

  • [bug] i18n: Vietnamese language with wrong lang code #270
  • [bug] i18n: fix search for non western languages #269

4.0.4 (2022-06-07)

Enhancements

  • [feature] theme: improve keyboard navigation for scrolling #268

Fixes

  • [bug] swagger: adjust font-size for method buttons #267
  • [bug] menu: hide expander when only hidden subpages #264
  • [bug] theme: make compatible with Hugo 0.100.0 #263

Maintenance

  • [task] swagger: update rapidoc to 9.3.2 #266
  • [task] mermaid: update to 9.1.1 #265

4.0.3 (2022-06-05)

Enhancements

  • [feature] toc: add scrollbar #262

4.0.2 (2022-06-05)

Fixes

  • [bug] theme: let browser scroll page on CTRL+f #242

4.0.1 (2022-06-05)

No changelog for this release.


4.0.0 (2022-06-05)

Enhancements

  • [feature] shortcodes: add named parameter if missing #260
  • [feature][breaking] theme: remove –MAIN-ANCHOR-color from stylesheet #256
  • [feature] i18n: add Italian translation #254
  • [feature] attachments: support for brand colors #252
  • [feature] notice: support for brand colors #251
  • [feature][breaking] config: remove custom_css #248
  • [feature] theme: use proper file extension for page-meta.go #246
  • [feature] variant: add support for brand color variables #239
  • [feature] i18n: add Polish translation #237

Fixes

  • [bug] shortcodes: accept boolean parameters if given as string #261
  • [bug] print: adjust button and tab size #259
  • [bug] print: show Mermaid if requested in frontmatter #255
  • [bug] theme: adjust thin scrollbar slider #244
  • [bug] mobile: fix broken scrollbar #243
  • [bug] theme: fix display of tooltip for heading anchor #241

Version 3

β˜… What's new in this version β˜…

3.4.1 (2022-04-03)

Fixes

  • [bug] theme: fix IE11 incompatibilities #234

3.4.0 (2022-04-03)

Enhancements

  • [feature] i18n: add Traditional Chinese translation #233
  • [feature] menu: expand/collapse menu items without navigation #231
  • [feature] print: add option to print whole chapter #230
  • [feature][breaking] theme: apply user supplied content footer below content #229

Fixes

  • [bug] theme: scroll to heading on initial load #232


3.3.0 (2022-03-28)

Enhancements

  • [feature] theme: add CSS font variables #227
  • [feature] swagger: add support for oas/swagger documentation #226

Fixes

  • [bug] variant: make variant switch work on slow networks #228


3.2.1 (2022-03-25)

Fixes

  • [bug] print: fix minor inconsistencies #225
  • [bug] print: show more than just the title page #224
  • [bug] theme: align content scrollbar to the right on big screens #223

3.2.0 (2022-03-19)

Enhancements

  • [feature][change] mermaid: support differing themes for color variant switch #219
  • [feature] mermaid: load javascript on demand #218

Maintenance

  • [task] mermaid: update to 8.14.0 #220


3.1.1 (2022-03-16)

Enhancements

  • [feature] i18n: add Korean translation #217

3.1.0 (2022-03-15)

Enhancements

  • [feature] notice: add icon parameter #212
  • [feature] mobile: remove breadcrumb ellipsis #211

Fixes

  • [bug] theme: make storage of multiple Hugo sites on same server distinct #214
  • [bug] variant: switch breadcrumb color in Chrome #213
  • [bug] mobile: improve behavior of sidebar menu #210


3.0.4 (2022-02-24)

Enhancements

  • [feature] theme: improve font loading #201
  • [feature][change] variant: fix inconsistent color variable naming #200

Fixes

  • [bug] variant: fix occasional fail when resetting generator #208
  • [bug] docs: don’t move header on logo hover in IE11 #207
  • [bug] variant: avoid flash of menu header when non default variant is active #206
  • [bug] theme: fix wrong HTML closing tag order in chapters #205
  • [bug] theme: adjust breadcrumb and title for empty home page titles #202

3.0.3 (2022-02-23)

Enhancements

  • [feature] tags: show tag count in taxonomy list #195

Fixes

  • [bug] theme: remove Hugo build warning if page is not file based #197
  • [bug] tags: adhere to titleSeparator #196
  • [bug] theme: hide footer divider and variant selector in IE11 #194

3.0.2 (2022-02-23)

Enhancements

  • [feature] tags: sort by name #193

3.0.1 (2022-02-23)

Enhancements

  • [feature] children: set containerstyle automatically according to style #192

Fixes

  • [bug] theme: revert fontawsome to version 5 for IE11 compat #191

3.0.0 (2022-02-22)

Enhancements

  • [feature] variant: build a variant generator #188
  • [feature] nav: only show toc if the page has headings #182
  • [feature][breaking] theme: change default colors to Relearn defaults #181
  • [feature] variant: add a variant selector #178
  • [feature][breaking] menu: rework footer UX #177
  • [feature] theme: support for dark mode #175
  • [feature] docs: use light syntax highlighting theme #174
  • [feature] notice: tweak dull colors #173
  • [feature] theme: rework header UX #151

Fixes

  • [bug] search: remove additional X in filled out search box in IE11 #190
  • [bug] clipboard: localize tooltips #186
  • [bug] print: hide sidebar on Mac #183
  • [bug] menu: fix scrollbar height #180
  • [bug][change] search: fix color change for icons on hover #176

Version 2

β˜… What's new in this version β˜…

2.9.6 (2022-02-07)

Fixes

  • [bug] menu: remove debug output #171

2.9.5 (2022-02-07)

Fixes

  • [bug] menu: let arrow navigation respect ordersectionsby configuration #170

2.9.4 (2022-02-06)

Fixes

  • [bug] exampleSite: fix links in official documentation #168

2.9.3 (2022-02-06)

Fixes

  • [bug] menu: invalid URL when the shortcut is an internal link #163

2.9.2 (2021-11-26)

Enhancements

  • [feature] theme: add theme version info to head #158

Fixes

  • [bug] theme: fix selection of *.ico files as favicons #160

2.9.1 (2021-11-22)

Fixes

  • [bug] menu: fix significantly low performance for collecting of meta info #157

2.9.0 (2021-11-19)

Fixes

  • [bug][breaking] relref: fix inconsistent behavior #156
  • [bug] search: make dropdown stick to search field when scrolling #155
  • [bug] menu: align long text properly #154
  • [bug] copyToClipBoard: add missing right border for inline code if disableInlineCopyToClipBoard=true #153
  • [bug] menu: show hidden sibling pages reliably #152
  • [bug] menu: bring active item in sight for large menus #149


2.8.3 (2021-11-09)

Fixes

  • [bug] mermaid: let zoom reset to initial size #145
  • [bug] mermaid: remove whitespace from big graphs #143

2.8.2 (2021-11-08)

Fixes

  • [bug] mermaid: always load javascript to avoid break if code fences are used #142

2.8.1 (2021-11-04)

Fixes

  • [bug] search: don’t break JS in multilang setup if search is disabled #140

2.8.0 (2021-11-03)

Enhancements

  • [feature] toc: make disableTOC globally available via config.toml #133
  • [feature] mermaid: only load javascript if necessary #95
  • [feature][change] theme: switch font #83
  • [feature] theme: make favicon configurable #2

Fixes

  • [bug] mermaid: assert that window.mermaid is actually mermaid #136
  • [bug] menu: remove usage of Hugo’s UniqueID #131
  • [bug] theme: reduce margin for children shortcode #130
  • [bug] theme: left-align h3 in chapters #129
  • [bug] theme: align copy link to clipboard #128


2.7.0 (2021-10-24)

Enhancements

  • [feature] notice: support custom titles #124


2.6.0 (2021-10-21)

Fixes

  • [bug] theme: generate correct links if theme served from subdirectory #120


2.5.1 (2021-10-12)

Fixes

  • [bug] security: fix XSS for malicious image URLs #117

2.5.0 (2021-10-08)

Enhancements

  • [feature][change] syntax highlight: provide default colors for unknown languages #113

Fixes

  • [bug] security: fix XSS for malicious URLs #114
  • [bug] menu: write correct local shortcut links #112


2.4.1 (2021-10-07)

Fixes

  • [bug] theme: remove runtime styles from print #111

2.4.0 (2021-10-07)

Enhancements

  • [feature] lang: add vietnamese translation #109
  • [feature][change] theme: simplify stylesheet for color variants #107
  • [feature] hidden pages: remove from RSS feed, JSON, taxonomy etc #102
  • [feature] theme: announce alternative content in header #101
  • [feature] menu: frontmatter option to change sort predicate #98
  • [feature] menu: frontmatter option to change sort predicate #98
  • [feature] menu: add default setting for menu expansion #97
  • [feature] theme: improve print style #93
  • [feature] theme: improve style #92

Fixes

  • [bug] include: don’t generate additional HTML if file should be displayed “as is” #110
  • [bug] attachments: fix broken links if multilang config is used #105
  • [bug] theme: fix sticky header to remove horizontal scrollbar #82

Maintenance

  • [task] chore: update fontawesome #94


2.3.2 (2021-09-20)

Fixes

  • [bug] docs: rename history pirate translation #91

2.3.1 (2021-09-20)

Fixes

  • [bug] docs: rename english pirate translation to avoid crash on rendering #90

2.3.0 (2021-09-13)

Fixes

  • [bug] theme: fix usage of section element #88

Maintenance

  • [task] theme: ensure IE11 compatibility #89
  • [task] docs: Arrr! showcase multilang featurrre #87


2.2.0 (2021-09-09)

Enhancements

  • [feature] sitemap: hide hidden pages from sitemap and SEO indexing #85

Fixes

  • [bug] theme: fix showVisitedLinks in case Hugo is configured to modify relative URLs #86

Maintenance

  • [task] theme: switch from data-vocabulary to schema #84


2.1.0 (2021-09-07)

Enhancements

  • [feature] search: open expand if it contains search term #80
  • [feature] menu: scroll active item into view #79
  • [feature] search: disable search in hidden pages #76
  • [feature] search: improve readability of index.json #75
  • [feature] search: increase performance #74
  • [feature] search: improve search context preview #73

Fixes

  • [bug][change] search: hide non-site content #81
  • [bug] menu: always hide hidden sub pages #77


2.0.0 (2021-08-28)

Enhancements

  • [feature] tabs: enhance styling #65
  • [feature] theme: improve readability #64
  • [feature] menu: show hidden pages if accessed directly #60
  • [feature][change] theme: treat pages without title as hidden #59
  • [feature] search: show search results if field gains focus #58
  • [feature] theme: add partial templates for pre/post menu entries #56
  • [feature] theme: make chapter archetype more readable #55
  • [feature] children: add parameter for container style #53
  • [feature] theme: make content a template #50
  • [feature] menu: control menu expansion with alwaysopen parameter #49
  • [feature] include: new shortcode to include other files #43
  • [feature] theme: adjust print styles #35
  • [feature][change] code highlighter: switch to standard hugo highlighter #32

Fixes

  • [bug][change] arrow-nav: default sorting ignores ordersectionsby #63
  • [bug][change] children: default sorting ignores ordersectionsby #62
  • [bug][change] arrow-nav: fix broken links on (and below) hidden pages #61
  • [bug] theme: remove superfluous singular taxonomy from taxonomy title #46
  • [bug][change] theme: missing –MENU-HOME-LINK-HOVER-color in documentation #45
  • [bug] theme: fix home link when base URL has some path #44

Maintenance

  • [task] docs: include changelog in exampleSite #33

Version 1

β˜… What's new in this version β˜…

1.2.0 (2021-07-26)

Enhancements

  • [feature] theme: adjust copy-to-clipboard #29
  • [feature] attachments: adjust style between notice boxes and attachments #28
  • [feature] theme: adjust blockquote contrast #27
  • [feature] expand: add option to open on page load #25
  • [feature] expand: rework styling #24
  • [feature] attachments: sort output #23
  • [feature] notice: make restyling of notice boxes more robust #20
  • [feature] notice: fix contrast issues #19
  • [feature] notice: align box colors to common standards #18
  • [feature] notice: use distinct icons for notice box type #17

Fixes

  • [bug] attachments: support i18n for attachment size #21
  • [bug] notice: support i18n for box labels #16
  • [bug] notice: support multiple blocks in one box #15

Maintenance

  • [task] dependency: upgrade jquery to 3.6.0 #30


1.1.1 (2021-07-04)

Maintenance

  • [task] theme: prepare for new hugo theme registration #13

1.1.0 (2021-07-02)

Enhancements

  • [feature] mermaid: expose options in config.toml #4

Fixes

  • [bug] mermaid: config option for CDN url not used #12
  • [bug] mermaid: only highlight text in HTML elements #10
  • [bug] mermaid: support pan & zoom for graphs #9
  • [bug] mermaid: code fences not always rendered #6
  • [bug] mermaid: search term on load may bomb chart #5

Maintenance

  • [task] mermaid: update to 8.10.2 #7


1.0.1 (2021-07-01)

Maintenance

  • [task] Prepare for hugo showcase #3

1.0.0 (2021-07-01)

Maintenance

  • [task] Fork project #1