<p>Here’s how t' start yer new website. If you’re new t' Cap'n Hugo, we recommend learn'n more about it 'n its excellent <ahref="https://gohugo.io/getting-started/"rel="external"target="_self">starter’s guide</a>.</p>
<h2id="install-hugo">Install Cap'n Hugo</h2>
<p>Download an' install Cap'n Hugo <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.126.0</span></span> or newer fer yer operat'n system <ahref="https://gohugo.io/installation/"rel="external"target="_self">follow'n th' instruct'ns</a>.</p>
<p>Th' <em>standard</em> edit'n o' Cap'n Hugo be sufficient but ye can also use th' <em>extended</em> edit'n.</p>
<h2id="create-your-project">Create yer Project</h2>
<p>Use Hugo’s <code>new ship</code> command t' make a new website</p>
<divclass="highlight wrap-code"><pretabindex="0"class="chroma"><codeclass="language-shell"data-lang="shell"><spanclass="line"><spanclass="cl">hugo new ship my-new-site</span></span></code></pre></div>
<p>Run all future commands from this directory.</p>
<h2id="install-the-theme">Install th' Theme</h2>
<h3id="download-as-a-zip-file">Download as a Zip File</h3>
<p>Ye can <ahref="https://github.com/McShelby/hugo-theme-relearn/archive/main.zip"rel="external"target="_self">download th' theme as a .zip file</a> an' unzip it into th' <code>themes/hugo-theme-relearn</code> directory.</p>
<p>Then add this at th' top o' yer <code>hugo.toml</code></p>
<divclass="highlight wrap-code"><pretabindex="0"class="chroma"><codeclass="language-shell"data-lang="shell"><spanclass="line"><spanclass="cl">hugo mod init example.com</span></span></code></pre></div>
<p>Then add this at th' end o' yer <code>hugo.toml</code></p>
<h2id="create-your-home-page">Create yer Home Plank</h2>
<p>Start by mak'n a home plank</p>
<divclass="highlight wrap-code"><pretabindex="0"class="chroma"><codeclass="language-shell"data-lang="shell"><spanclass="line"><spanclass="cl">hugo new --kind home _index.md</span></span></code></pre></div>
<p>Th' new home plank file <code>content/_index.md</code> has two parts: th' plank info (like <code>title</code>) at th' top, called <ahref="https://gohugo.io/content-management/front-matter/"rel="external"target="_self">front matter</a>, an' th' plank rrrambl'n below.</p>
<h2id="create-your-first-chapter-page">Create yer First Chapter Plank</h2>
<p>Chapters be top-level planks that contain other planks. They have a special layout.</p>
<p>Make yer first chapter plank</p>
<divclass="highlight wrap-code"><pretabindex="0"class="chroma"><codeclass="language-shell"data-lang="shell"><spanclass="line"><spanclass="cl">hugo new --kind chapter first-chapter/_index.md</span></span></code></pre></div>
<p>Th' new file <code>content/first-chapter/_index.md</code> has a <code>weight</code> number 'n th' front matter. This sets th' chapter’s subtitle an' its order 'n th' menu.</p>
<h2id="create-your-first-content-pages">Create yer First Rrrambl'n Planks</h2>
<p>Now make rrrambl'n planks inside th' chapter. Here be three ways t' do this</p>
<divclass="highlight wrap-code"><pretabindex="0"class="chroma"><codeclass="language-shell"data-lang="shell"><spanclass="line"><spanclass="cl">hugo new first-chapter/first-page/_index.md
</span></span><spanclass="line"><spanclass="cl">hugo new first-chapter/second-page/index.md
</span></span><spanclass="line"><spanclass="cl">hugo new first-chapter/third-page.md</span></span></code></pre></div>
<p>Cap'n Hugo treats these files differently based on their file names. Learrrn more 'n <ahref="https://gohugo.io/content-management/"rel="external"target="_self">Hugo’s guide</a>.</p>
<p>Feel free t' edit these files. Change th' <code>title</code>, add a <code>weight</code> if ye want, an' write yer rrrambl'n.</p>
<h2id="test-your-website-locally">Test yer Website Locally</h2>
<p>Start yer new website on yer computer wit' this command</p>
<p>This creates a <code>public</code> directory wit' all yer website files.</p>
<p>Ye can upload this directory t' any web server, or use one o' <ahref="https://gohugo.io/hosting-and-deployment/"rel="external"target="_self">Hugo’s many other ways t' publish</a>.</p>
<h2id="next-steps">Next Steps</h2>
<p>Yer ship be now fully functional.</p>
<p>Ye can continue <ahref="/hugo-theme-relearn/pir/configuration/index.html">configur'n yer ship</a> t' yer needs.</p>
<p>Or just start <ahref="/hugo-theme-relearn/pir/authoring/index.html">author'n rrrambl'n</a> an' discover what’s poss'ble.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/children/index.html"><code>children</code> shortcode</a> was changed t' output a page’s <em>LinkTitle</em> instead o' previously us'n th' <em>Title</em>.</p>
<p>As th' shortcode always outputs subpages 'n context o' th' parent plank, it funct'ns similar t' th' sidebar menu. Th' sidebar menu itself uses th' <em>LinkTitle</em> fer nam'n th' menu entries an' so should th' shortcode do.</p>
<p>Th' parameter value <code>sort=linktitle</code> was deprecated fer th' easier <code>sort=title</code>. Ye can still use th' old value but both behave th' same way 'n sort'n by <em>LinkTitle</em>.</p>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Menus created by yer plank structure be now able t' <ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#displaying-arbitrary-links-in-a-page-menu">contain arbitrary links</a> inserted into th' structure us'n th' <code>menuUrl</code> or <code>menuPageRef</code> front matter.
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.126.0</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="breaking">Break'n</h3>
<ul>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> This release comes wit' significant changes 'n file nam'n o' partials an' how th' theme works internally. This was done because th' theme</p>
<ul>
<li>suffered from poor build performance fer sites wit' 1000 or more planks</li>
<li>reinvented th' wheel instead o' us'n avail'ble Cap'n Hugo mechanisms</li>
<p><em>What do I gain</em>, ye may ask. A significant performance boost dur'n build! Usually, th' build time has been cut at least 'n half fer bigger sites. It be now poss'ble t' build even larger sites wit' 5000 or more planks. This was previously almost imposs'ble due t' rapidly increas'n build time wit' th' more planks you’ve introduced. For even bigger sites, th' theme now has <ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#expander-for-submenus">configur'ble performance optimizat'ns</a> - at th' price o' feature limitat'ns.</p>
<p>If ye haven’t done customizat'ns t' any partials, ye can update right away.</p>
<p>If ye have customized yer templates, 'n th' best cases, ye will get build warnings or even errors. In th' worst cases, yer build succeeds but th' ship will not work as intended by ye.</p>
<p>Specifically, ye will have t' adapt yer ship if ye have</p>
<ul>
<li><ahref="/hugo-theme-relearn/pir/configuration/customization/partials/index.html">overwritten th' <code>header.html</code>, <code>menu.html</code> or <code>footer.html</code> partials</a></li>
<li>self-defined archetype partials 'n <code>layouts/partials/archetypes</code> - now becom'n <ahref="/hugo-theme-relearn/pir/configuration/customization/designs/index.html">plank designs</a></li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> This release changes th' way th' search index an' th' dedicated search plank be generated. This may require reconfigurat'n by ye t' still work as ye have intended.</p>
<p>Ye need t' remove th' now obsolete <code>search</code> an' <code>searchpage</code> output format from <code>[outputs.home]</code> 'n yer <code>hugo.toml</code>, result'n 'n someth'n similar t'</p>
<p>Aft that, yer build will succeed but will most likely cause new defaults t' be applied. Wit' no further sett'ns, in-page search, search popup an' dedicated search plank be all active by default. This can be reconfigured.</p>
<p>In addit'n, ye be now able t' overwrite th' default file name o' th' search index an' th' default plank name o' th' dedicated search plank by chang'n <code>searchIndexURL</code> an' <code>searchPageURL</code> respectively 'n yer <code>hugo.toml</code>.</p>
<p>See th' <ahref="/hugo-theme-relearn/pir/configuration/sidebar/search/index.html">updated documentat'n</a> fer reference.</p>
<p>Care was taken t' configure th' font t' look similar t' th' previously used Work Sans. Nevertheless, 'n direct comparison, ye will see slight differences 'n appearance.</p>
<p>This change was necessary as th' previously used font had display issues wit' <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#marked-text">marked text</a>, contrast, an' some other minor stuff. As an aftermath, th' number o' requests an' th' download size were decreased when load'n a plank.</p>
<p>Th' font was created by Google, be licensed under OFL 1.1 an' be delivered from yer theme’s installat'n. As always, no third-party server calls be involved.</p>
<p>If ye have changed th' <code>font-family</code> 'n yer installat'n, ye most likely have t' adjust th' variables <code>--MAIN-font-weight</code>, <code>--MAIN-BOLD-font-weight</code> an' <code>--MAIN-letter-spac'n</code>.</p>
<p>Additionally, if ye have changed th' font t' a <ahref="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_fonts/Variable_fonts_guide#variable_fonts_what_they_are_and_how_they_differ"rel="external"target="_self">vari'ble font</a> 'n yer installat'n, ye may have t' adjust th' vari'ble <code>--MAIN-font-variation-sett'ns</code>. As this only applies t' <strong>vari'ble fonts</strong>, this should rarely be necessary.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> While switch'n th' font, it was discovered that certain CSS variables were falsely named. Ye don’t need t' change anyth'n 'n yer custom variant stylesheet as th' old names will be used as a fallback.</p>
<p><code>--MAIN-TITLES-TEXT-font</code> was renamed t' <code>--MAIN-TITLES-font</code>, <code>--MAIN-TITLES-H<n>-color</code> was renamed t' <code>--MAIN-TITLES-H<n>-TEXT-color</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' opt'ns an' front matter t' force load'n a <ahref="/hugo-theme-relearn/pir/shortcodes/math/index.html#force-loading-of-the-mathjax-library">math</a>, <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#force-loading-of-the-mermaid-library">mermaid</a> or <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html#force-loading-of-the-swagger-ui-library">openapi</a> library has been changed.</p>
<p>Previously, ye had t' set th' unintuitive <code>disableMathJax=false</code> t' force board th' math library 'n case o' a passthrough configurat'n. This be replaced by th' simpler <code>math=true</code> or <code>math.force=true</code> an' be now 'n line wit' <ahref="https://gohugo.io/content-management/mathematics/#step-1"rel="external"target="_self">Hugo’s official documentat'n</a>.</p>
<p>Ye don’t need t' change anyth'n yet but will receive warnings if th' old sett'ns be used.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' default logo be not contained inside o' th' theme’s logo partial anymore.</p>
<p>This be t' avoid usage o' th' theme’s brand'n throughout th' web 'n non-modified installat'ns.</p>
<p>In addit'n, th' default text fer th' logo partial be now <ahref="/hugo-theme-relearn/pir/configuration/sidebar/headerfooter/index.html#title">taken from th' <code>linkTitle</code> sett'n</a> o' yer <code>hugo.toml</code>.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' docs received a much-needed overhaul fer all chapters.</p>
<p>Basically, th' structure was reorganized, giv'n each topic its own plank while keep'n th' amount o' items fer each menu level comprehens'ble by add'n sub-pages.</p>
<p>Th' docs now clearly differentiate between <ahref="/hugo-theme-relearn/pir/configuration/index.html">configurat'n o' yer ship</a>, all th'ns <ahref="/hugo-theme-relearn/pir/authoring/index.html">writ'n plank rrrambl'n</a> an' th' <ahref="/hugo-theme-relearn/pir/shortcodes/index.html">shorrrtcodes docs</a> that cover both topics, configurat'n an' usage.</p>
<p>T' give ye a better overview o' what’s poss'ble wit' th' theme, we introduced reference planks fer all theme <ahref="/hugo-theme-relearn/pir/configuration/reference/index.html">configurat'n opt'ns</a> an' <ahref="/hugo-theme-relearn/pir/authoring/frontmatter/reference/index.html">front matter</a> an' mark each occurrence o' such on all planks wit' th' badges <spanclass="badge cstyle cyan badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-gears"></i></span><spanclass="badge-content">Opt'n</span></span> an' <spanclass="badge cstyle green badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-markdown"></i></span><spanclass="badge-content">Front Matter</span></span>.</p>
<p>Also, a lot o' previously undocumented features be now included, namely</p>
<li>configur'n <ahref="/hugo-theme-relearn/pir/configuration/content/titles/index.html">breadcrumb, titles</a> an' <ahref="/hugo-theme-relearn/pir/configuration/content/headings/index.html">head'ns</a> o' yer rrrambl'n</li>
<li><ahref="/hugo-theme-relearn/pir/configuration/content/linking/index.html">opt'ns fer us'n links</a></li>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> If ye now display a single code block 'n a <code>notice</code> box, its <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html#code-with-collapsed-colored-borders">margin an' border will be removed</a> so only th' colored notice border be vis'ble.</li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> It be now poss'ble t' have user-defined styles fer all shorrrtcodes that accept th' <code>style</code> parameter. See th' <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html#defining-own-styles"><code>notice</code> shortcode</a> fer configurat'n.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/resources/index.html"><code>resources</code> shortcode</a> has a new parameter <code>expanded</code> t' make th' resource list collaps'ble.
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/expand/index.html"><code>expand</code> shortcode</a> changed th' nam'n o' th' <code>open</code> parameter t' <code>expanded</code>. Ye don’t need t' change anyth'n yet but may get deprecat'n warnings.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> If th' rrrambl'n fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html"><code>notice</code> shortcode</a> be empty, now only th' title bar will be displayed. Previously an empty rrrambl'n box was displayed.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html"><code>notice</code> shortcode</a> has a new parameter <code>expanded</code> t' make th' rrrambl'n collaps'ble.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> If ye be runn'n Hugo <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.134.0</span></span> or later, th' theme now supports <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#obsidian-callouts">Obsidian callouts</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme has updated its Merrrmaid dependency t' 11.1.0. This adds support fer <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#packet">packet</a> an' <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#architecture">architecture</a> diagrams.
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' head'n anchor links be extended 'n functionality.</p>
<p>If ye now click on it, not only be th' link copied t' th' clipboard (previous behavior) but also th' head'n scrolls t' th' top o' th' plank.</p>
<p>If ye dislike th' new behavior, ye can deactivate it by sett'n <code>disableAnchorScrolling=true</code> 'n yer <code>hugo.toml</code>. See th' <ahref="/hugo-theme-relearn/pir/configuration/content/headings/index.html">docs fer further opt'ns</a>.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> If ye be runn'n Hugo <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.132.0</span></span> or later, th' theme be now cap'ble t' print <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#github-alerts">GitHub alerts</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> T' support new severity levels fer GitHub alerts, all shorrrtcodes that support severity levels wit' their <code>style</code> parameter were expanded wit' th' new severities <code>caut'n</code> an' <code>important</code> an' th' <code>color</code> parameter was expanded wit' <code>cyan</code> an' <code>magenta</code>. Please note, that color'n an' ay'cons o' severities may defer from th' <ahref="https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts"rel="external"target="_self">display ye see on GitHub</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> T' support new severity levels fer GitHub alerts, th' new severities an' their accord'n colors be also avail'ble as CSS variables <code>BOX-MAGENTA-color</code>, <code>BOX-MAGENTA-TEXT-color</code>, <code>BOX-CAUTION-color</code>, <code>BOX-CAUTION-TEXT-color</code>, <code>BOX-CYAN-color</code>, <code>BOX-CYAN-TEXT-color</code>, <code>BOX-IMPORTANT-color</code>, <code>BOX-IMPORTANT-TEXT-color</code>. Ye don’t need t' change anyth'n 'n yer custom color stylesheet as appropriate default colors will be used.
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/include/index.html"><code>include</code> shortcode</a> be now able t' resolve links t' planks as well as resources or files 'n th' file system (the old behavior).</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> T' make th' asset buster mechanism more robust, some internally used stylesheets whar' restructured. This generally should not affect yer plank 'n any negative way.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html"><code>openapi</code> shortcode</a> be now able t' resolve links t' resources as well as t' files 'n th' file system (the old behavior). Ye can configure t' generate warnings or errors dur'n build by sett'n <code>openapi.errorlevel</code> t' either <code>warning</code> or <code>error</code> 'n yer <code>hugo.toml</code> if a path can not be resolved.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Shorrrtcodes support'n an <code>errorlevel</code> configurat'n can now have overridden values 'n th' <ahref="/hugo-theme-relearn/pir/authoring/frontmatter/reference/index.html">front matter</a> section o' each individual plank.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now comes wit' its own overridden version o' th' <code>relref</code> shortcode.</p>
<p>While th' usage o' <code>relref</code> be obsolete an' discouraged by Cap'n Hugo fer a while, exist'n installat'ns may use it. In configurat'ns us'n a <code>baseURL</code> wit' a subdirectory, an' hav'n <code>relativeURLs=false</code> (the default) Hugo’s standard <code>relref</code> implementat'n was fail'n.</p>
<p>Th' shortcode be deactivated by default an' can be activated by sett'n</p>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Th' parameter <code>descript'n</code> 'n yer <code>hugo.toml</code> will now be ignored.</p>
<p>Wit' th' newly introduced unified handl'n o' descript'ns throughout th' theme, th' only place th' old parameter would have been used was yer home plank.</p>
<p>For migrat'n, move th' <code>descript'n</code> parameter o' yer <code>hugo.toml</code> into th' front matter section o' yer home plank.</p>
</li>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Search support fer th' <code>json</code> outputformat <ahref="/hugo-theme-relearn/pir/introduction/releasenotes/5/index.html#5-4-0">deprecated 'n 5.4.0</a> was removed.</p>
<p>Change it t' <code>search</code> fer th' homepage 'n yer <code>hugo.toml</code>. See th' docs fer <ahref="/hugo-theme-relearn/pir/configuration/sidebar/search/index.html">detailed configurat'n</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Th' front matter opt'n <code>menuTitle</code><ahref="/hugo-theme-relearn/pir/introduction/releasenotes/5/index.html#5-24-0">deprecated 'n 5.24.0</a> was removed 'n favor fer Hugo’s own <code>linkTitle</code>.</p>
<p>Additionally, if set, <code>linkTitle</code> will now be used instead o' <code>title</code> t' generate th' breadcrumb.</p>
</li>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Th' <code>swagger</code> shortcode <ahref="/hugo-theme-relearn/pir/introduction/releasenotes/5/index.html#5-13-0">deprecated 'n 5.13.0</a> was removed 'n favor fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html"><code>openapi</code> shortcode</a> wit' th' same set o' parameter.</p>
</li>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Support fer Internet Explorer 11 was finally dropped.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Wit' th' removal o' support fer Internet Explorer 11, Font Awesome was upgraded t' version 6.5.2.</p>
<p>Ye may experience slight changes fer some ay'cons. In addit'n ye have additional ~1700 ay'cons <ahref="https://fontawesome.com/v6/search?m=free"rel="external"target="_self">t' chose</a> from.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/children/index.html"><code>children</code> shortcode</a> was fixed t' adhere t' its documentat'n, generat'n th' descript'n based on this rule: When no descript'n or summary exists fer th' plank, th' first 70 words o' th' rrrambl'n be taken.</p>
<p>Previously, th' summary erroneously was ignored which now can lead t' different output if ye set <code>description=true</code> as a parameter.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/include/index.html"><code>include</code> shortcode</a> be now able t' resolve links t' resources as well as t' files 'n th' file system (the old behavior). Ye can configure t' generate warnings or errors dur'n build by sett'n <code>include.errorlevel</code> t' either <code>warning</code> or <code>error</code> 'n yer <code>hugo.toml</code> if a path can not be resolved.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Math be now us'ble without enclos'n it 'n a shortcode or Marrrkdown codefence by us'n Hugo’s <ahref="/hugo-theme-relearn/pir/shortcodes/math/index.html#passthrough-configuration">passthrough configurat'n</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Romanian.
See the <ahref="/hugo-theme-relearn/pir/introduction/changelog/5/index.html">changelog of this version</a> for a detailed list of changes.
<hr>
<p></p>
<h2id="5-27-0">5.27.0 (2024-04-07)</h2>
<h3id="hugo-01210">Cap'n Hugo 0.121.0</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.121.0</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="change">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> If th' theme be configured t' generate warnings or errors dur'n build by sett'n <code>image.errorlevel</code> t' either <code>warning</code> or <code>error</code> 'n yer <code>hugo.toml</code>, it will now also generate output if a link fragment be not found 'n th' target plank.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/configuration/customization/dependencies/index.html">dependency loader</a> was made more versatile.</p>
<p>Th' configurat'n 'n yer <code>hugo.toml</code> does not require th' <code>locat'n</code> parameter anymore. If ye still use it, th' theme will work as before but will generate a warning. So ye don’t need t' change anyth'n, yet.</p>
<p>Wit' th' new mechanism, yer dependency loader now receives an additional <code>locat'n</code> parameter instead that ye can query t' inject yer dependencies 'n th' desired locat'n.</p>
<p>By that ye can now call th' dependency mechanism 'n yer own overriden partials by giv'n it a distinct <code>locat'n</code> parameter. In addit'n yer injected files can now be spread t' multiple locat'ns which wasn’t previously poss'ble.</p>
</li>
</ul>
<h3id="new">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Additional styl'n was added fer th' native HTML elements <code><mark></code> an' <code><kbd></code>. T' use them ye must allow th' <ahref="https://gohugo.io/getting-started/configuration-markup/#rendererunsafe"rel="external"target="_self">usage o' HTML</a> 'n yer <code>hugo.toml</code>. Th' <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#standard-and-extensions">Marrrkdown documentat'n</a> was enhanced fer this.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye now can scroll forward an' backward through all head'ns o' a plank by us'n <kbd>ALT</kbd><kbd>🡑</kbd> an' <kbd>ALT</kbd><kbd>🡓</kbd>. This also works fer th' <code>PRINT</code> output format.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' breadcrumbs used 'n th' topbar, search results an' th' taxonomy term lists be now us'n th' planks front matter <code>linktitle</code> instead o' <code>title</code> if set.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-26-0">5.26.0 (2024-03-18)</h2>
<h3id="new-1">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' lazy load'n o' images be now configur'ble by us'n th' new <code>lazy</code><ahref="/hugo-theme-relearn/pir/configuration/customization/imageeffects/index.html">image effect</a>. Th' default value hasn’t changed 'n comparison t' older versions, ye don’t need t' change anyth'n.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> It be now poss'ble t' <ahref="/hugo-theme-relearn/pir/configuration/content/width/index.html">adjust th' max width o' th' main area</a>, eg. 'n case ye want t' use th' full plank width fer yer rrrambl'n.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Images an' Marrrkdown codefences be now respect'n <ahref="https://gohugo.io/content-management/markdown-attributes/"rel="external"target="_self">Hugo’s Marrrkdown attributes</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme has updated its Merrrmaid dependency t' 10.6.0. This adds support fer <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#block-diagram">block diagrams</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release fixes a long-stand'n bug whar' th' plank wasn’t reposition'n correctly when go'n forward or backward 'n yer browser history.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-25-0">5.25.0 (2024-02-29)</h2>
<h3id="change-1">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> This release deprecates th' <ahref="/hugo-theme-relearn/pir/shortcodes/attachments/index.html"><code>attachments</code> shortcode</a> 'n favor o' th' new th' <ahref="/hugo-theme-relearn/pir/shortcodes/resources/index.html"><code>resources</code> shortcode</a>.</p>
<p>If ye be us'n Hugo below <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.123.0</span></span>, ye don’t need t' change anyth'n as th' old shortcode still works (but may generate warnings).</p>
<p>Anyways, users be strongly advised t' migrate as th' <code>attachments</code> shortcode will not receive support anymore. Migrat'n instruct'ns be listed on th' <ahref="/hugo-theme-relearn/pir/shortcodes/attachments/index.html#migration"><code>attachments</code> shortcode plank</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> If ye run Hugo wit' <ahref="https://gohugo.io/methods/page/gitinfo/"rel="external"target="_self">GitInfo</a> configured, th' default plank footer now prints out name, email address an' date o' th' last commit. If ye want t' turn this off ye either have t' run Hugo without GitInfo (which be th' default) or overwrite th' <code>content-footer.html</code> partial.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-24-0">5.24.0 (2024-02-28)</h2>
<h3id="hugo-01124">Cap'n Hugo 0.112.4</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.112.4</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="change-2">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' topbar button received a way t' add text next t' th' ay'con. For this, th' original <code>title</code> opt'n was renamed t' <code>hint</code> while th' new <code>title</code> opt'n be now displayed next t' th' ay'con.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' front matter opt'n <code>menuTitle</code> be now deprecated 'n favor fer Hugo’s own <code>linkTitle</code>. Ye don’t need t' change anyth'n as th' old <code>menuTitle</code> opt'n be still supported.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' light themes have a bit more contrast fer rrrambl'n text an' head'ns. Also th' syntaxhighlight'n was changed t' th' more colorful MonokaiLight. This br'ns th' syntaxhighlight'n 'n sync wit' th' correspond'n dark theme variants, which be us'n Monokai. If ye dislike this, ye can create yer own color variant file as <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#modifying-variants">described here</a>.</p>
</li>
</ul>
<h3id="new-2">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> If th' theme can not resolve a link t' a plank or image, ye can now generate warnings or errors dur'n build by sett'n <code>link.errorlevel</code> or <code>image.errorlevel</code> t' either <code>warning</code> or <code>error</code> 'n yer <code>hugo.toml</code> respectively. By default this condit'n be silently ignored an' th' link be written as-is.</p>
<p>Please note that a plank link will generate false negatives if <code>uglyURLs=true</code> an' it references an ordinary plank before <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.123.0</span></span>.</p>
<p>Please note that an image link will generate false negatives if th' file resides 'n yer <code>static</code> directory.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye now can configure additional opt'ns fer every theme variant 'n yer <code>hugo.toml</code>. This allows fer optional <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#theme-variant-advanced">advanced functionality</a>. Ye don’t need t' change anyth'n as th' old configurat'n opt'ns will still work (but may generate warnings now).</p>
<p>Th' advanced functionality allows ye t' set an explicit name fer a theme variant an' now allows fer multiple auto mode variants that adjust t' th' light/dark preference o' yer OS sett'ns.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> New partial fer defin'n th' head'n. See <ahref="/hugo-theme-relearn/pir/configuration/customization/partials/index.html">documentat'n</a> fer further read'n.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Support fer Hugo’s built-in <ahref="https://gohugo.io/content-management/shortcodes/#figure"rel="external"target="_self"><code>figure</code> shortcode</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> On taxonomy an' term planks ye can now use prev/next navigat'n as within th' normal plank structure.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> In additiion t' th' exist'n <ahref="/hugo-theme-relearn/pir/configuration/sidebar/width/index.html">menu width customizat'n</a>, it be now also poss'ble t' set th' width o' th' menu flyout fer small screen sizes wit' th' <code>--MENU-WIDTH-S</code> CSS property.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Improvements fer accessibility when tabb'n through th' plank fer images, links an' tab handles.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <code>editURL</code> config parameter be now <ahref="/hugo-theme-relearn/pir/authoring/frontmatter/reference/index.html">overwrit'ble 'n yer planks front matter</a>. In addit'n it received more versatility by lett'n ye control whar' t' put th' file path into th' URL. This be achieved by replac'n th' vari'ble <code>${FilePath}</code> 'n yer URL by th' planks file path. Ye don’t need t' change anyth'n 'n yer exist'n configurat'n as th' old way without th' replacement vari'ble still works.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' themes <ahref="/hugo-theme-relearn/pir/configuration/reference/index.html">config</a> an' <ahref="/hugo-theme-relearn/pir/authoring/frontmatter/reference/index.html">front matter</a> opt'ns received a comprehensive documentat'n update. In addit'n th' theme switched from <code>config.toml</code> t' <code>hugo.toml</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Restored compatibility wit' Cap'n Hugo versions <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.121.0</span></span> or higher fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/highlight/index.html"><code>highlight</code> shortcode</a>. This does not change th' minimum required Cap'n Hugo version.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Restored compatibility wit' Cap'n Hugo versions <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.123.0</span></span> or higher fer theme specific output formats an' handl'n o' taxonomy an' term titles. This does not change th' minimum required Cap'n Hugo version.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-23-0">5.23.0 (2023-11-03)</h2>
<h3id="change-3">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Wit' <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.120.0</span></span> th' author sett'ns move into th' <code>[params]</code> array 'n yer <code>hugo.toml</code>. Because this collides wit' th' previous way, th' theme expected author informat'n, it now adheres t' Cap'n Hugo standards an' prints out a warning dur'n built if someth'n be wrong.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Taxonomy <ahref="https://gohugo.io/content-management/taxonomies#add-custom-metadata-to-a-taxonomy-or-term"rel="external"target="_self">term planks</a> now add th' breadcrumb fer each listed plank. If this gets too crowded fer ye, ye can turn th' breadcrumbs off 'n yer <code>hugo.toml</code> by add'n <code>disableTermBreadcrumbs=true</code>.</p>
</li>
</ul>
<h3id="new-3">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Taxonomy an' term planks be now allowed t' contain rrrambl'n. This be added inbetween th' title an' th' plank list.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> It be now poss'ble t' print custom taxonomies anywhere 'n yer plank. <ahref="/hugo-theme-relearn/pir/configuration/customization/taxonomy/index.html#setting-up-custom-taxonomies">See th' docs</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> It be now poss'ble t' adjust th' menu width fer yer whole ship. <ahref="/hugo-theme-relearn/pir/configuration/sidebar/width/index.html">See th' docs</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release adds social media meta tags fer th' Open Graph protocol an' Twitter Cards t' yer ship. <ahref="/hugo-theme-relearn/pir/authoring/meta/index.html">See th' docs</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release comes wit' additional sort opt'ns fer th' menu an' th' <ahref="/hugo-theme-relearn/pir/shortcodes/children/index.html"><code>children</code> shortcode</a>. Both will now accept th' follow'n values: <code>weight</code>, <code>title</code>, <code>linktitle</code>, <code>modifieddate</code>, <code>expirydate</code>, <code>publishdate</code>, <code>date</code>, <code>length</code> or <code>default</code> (adher'n t' Hugo’s default sort order).</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now provides a mechanism t' board further JavaScript dependencies defined by ye only if it be needed. This comes 'n handy if ye want t' add own shorrrtcodes that depend on additional JavaScript code t' be boarded. <ahref="/hugo-theme-relearn/pir/configuration/customization/dependencies/index.html">See th' docs</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme has updated its Merrrmaid dependency t' 10.6.0. This adds support fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#xychart">xychart type</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release adds port'ble Marrrkdown links.</p>
<p>Previously it was not poss'ble t' use pure Marrrkdown links 'n a configurat'n independent way t' link t' planks inside o' yer project. It always required ye t' know how yer <code>uglyURLs</code> sett'n be, wheather ye link t' a plank or plank bundle an' 'n case o' relative links if yer current plank be a plank or plank bundle. (eg. <code>[generator](generator/index.html)</code> vs. <code>[generator](generator.html)</code>). This be a hassle as ye have t' change these links manually once ye change yer <code>uglyURLs</code> sett'n or change th' type o' a plank.</p>
<p>Ye could work around this by us'n th' <code>relref</code> shortcode (eg <code>[generator]({{% relref "../generator" %}})</code>) which works but results 'n non-port'ble Marrrkdown.</p>
<p>Now it’s poss'ble t' use th' same path o' a call t' <code>relref</code> 'n a plain Marrrkdown link (eg <code>[generator](../generator)</code>). This be independent o' any configurat'n sett'ns or th' plank types involved 'n link'n. Avast, that this requires yer links t' be given without any extension, so <code>[generator](generator/index.html)</code> will work as before.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> This release fixes an issue whar' 'n unfortunate condit'ns DOM ids generated by Cap'n Hugo may collide wit' DOM ids set by th' theme. T' avoid this, all theme DOM ids be now prefixed wit' <code>R-</code>.</p>
<p>If ye haven’t modified anyth'n, everyth'n be fine. Otherwise ye have t' check yer custom CSS rules an' JavaScript code.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Ye can now have structural sections 'n th' hierarchical menu without generat'n a plank fer it.</p>
<p>This can come 'n handy, if rrrambl'n fer such a section plank doesn’t make much sense t' ye. See <ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#disable-menu-entries">th' documentat'n</a> fer how t' do this.</p>
<p>This feature may require ye t' make changes t' yer exist'n installat'n if ye be already us'n <em><ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#displaying-pages-exclusively-in-a-hugo-menu">shortcuts t' planks inside o' yer project</a></em> wit' a <em>headless branch parent</em>.</p>
<p>In this case it be advised t' remove th' <code>title</code> from th' headless branch parent’s front matter, as it will otherwise appear 'n yer breadcrumbs.</p>
</li>
</ul>
<h3id="new-4">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> It be now poss'ble t' overwrite th' sett'n fer <code>collapsibleMenu</code> o' yer <code>hugo.toml</code> inside o' a page’s front matter.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> If a Merrrmaid graph be zoom'ble a button t' reset th' view be now added t' th' upper right corner. Th' button be only shown once th' mouse be moved over th' graph.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> It be now poss'ble t' remove th' root breadcrumb by sett'n <code>disableRootBreadcrumb=true</code> 'n yer <code>hugo.toml</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' output o' th' dedicated search plank now displays th' result’s breadcrumb.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> T'ble rows now change their background color on every even row.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Swahili. This language be not supported fer search.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-21-0">5.21.0 (2023-09-18)</h2>
<h3id="change-5">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> We made changes t' th' menu footer t' improve alignment wit' th' menu items 'n most cases. Care was taken not t' break yer exist'n overwritten footer. Anyways, if ye have yer <code>menu-footer.html</code><ahref="/hugo-theme-relearn/pir/configuration/customization/partials/index.html">partial overridden</a>, ye may want t' review th' styl'n (eg. margins/paddings) o' yer partial.</li>
</ul>
<h3id="new-5">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release comes wit' an awesome new feature, that allows ye t' cust'mize yer topbar buttons, change behavior, reorder them or define entirely new ones, unique t' yer installat'n. See <ahref="/hugo-theme-relearn/pir/configuration/customization/topbar/index.html">th' documentat'n</a> fer further details.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme has updated its Swagger dependency t' 5.7.2 fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html"><code>openapi</code> shortcode</a>. This br'ns support fer OpenAPI Specificat'n 3.1.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-20-0">5.20.0 (2023-08-26)</h2>
<h3id="change-6">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' theme has updated its Swagger dependency t' 5.4.1 fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html"><code>openapi</code> shortcode</a>.</p>
<p>Wit' this comes a change 'n th' light theme variants o' <code>Relearrrn Bright</code>, <code>Relearrrn Light</code> an' <code>Zen Light</code> by switch'n th' syntaxhighlight'n inside o' openapi t' a light scheme. This br'ns it more 'n sync wit' th' code style used by th' theme variants itself.</p>
<p>Additionally, th' syntaxhighlight'n inside o' openapi fer print'n was switched t' a light scheme fer all theme variants.</p>
<p>If ye dislike this change, ye can revert this 'n yer theme variants CSS by add'n</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> For consistency reasons, we renamed th' CSS vari'ble <code>--MENU-SECTION-HR-color</code> t' <code>--MENU-SECTION-SEPARATOR-color</code>. Ye don’t need t' change anyth'n 'n yer custom color stylesheet as th' old name will be used as a fallback.</p>
</li>
</ul>
<h3id="new-6">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme variants <code>Zen Light</code> an' <code>Zen Dark</code> now add more contrast between menu, topbar an' rrrambl'n by add'n thin borders.</p>
<p>Those borders be now configur'ble by us'n th' CSS variables <code>--MAIN-TOPBAR-BORDER-color</code>, <code>--MENU-BORDER-color</code>, <code>--MENU-TOPBAR-BORDER-color</code>, <code>--MENU-TOPBAR-SEPARATOR-color</code>, <code>--MENU-HEADER-SEPARATOR-color</code> an' <code>--MENU-SECTION-ACTIVE-CATEGORY-BORDER-color</code>.</p>
<p>For exist'n variants noth'n has changed visually.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' default values fer th' <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#image-effects">image effects</a> be <ahref="/hugo-theme-relearn/pir/configuration/customization/imageeffects/index.html">now configur'ble</a> fer yer whole ship via <code>hugo.toml</code> or fer each plank through front matter.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release fixes a long-stand'n bug whar' Merrrmaid graphs could not be displayed if they were initially hidden - like 'n collapsed <code>expand</code> or inactive <code>tabs</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Restored compatibility wit' Cap'n Hugo versions lower than <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.111.0</span></span> fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/highlight/index.html"><code>highlight</code> shortcode</a>. This does not change th' minimum required Cap'n Hugo version.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-19-0">5.19.0 (2023-08-12)</h2>
<h3id="new-7">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/highlight/index.html"><code>highlight</code> shortcode</a> now accepts th' new parameter <code>title</code>. This displays th' code like a <ahref="/hugo-theme-relearn/pir/shortcodes/tab/index.html">single tab</a>. This be also avail'ble us'n Marrrkdown codefences an' makes it much easier t' write nicer code samples.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme has added two new color variants <code>zen-light</code> an' <code>zen-dark</code>. Check it out!</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#react-to-variant-switches-in-javascript">dispatches th' custom event</a><code>themeVariantLoaded</code> on th' <code>document</code> when th' variant be fully boarded either initially or by switch'n th' variant manually wit' th' variant selector.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme has updated its Merrrmaid dependency t' 10.3.1. This adds support fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#sankey">sankey diagram type</a> an' now comes wit' full support fer YAML inside Merrrmaid graphs (previously, th' theme ignored explicit Merrrmaid theme sett'ns 'n YAML).</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Hungarian.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-18-0">5.18.0 (2023-07-27)</h2>
<h3id="change-7">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' theme adds additional warnings fer deprecated or now unsupported features.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> There be visual improvements 'n display'n text links 'n yer rrrambl'n as well as t' some other click'ble areas 'n th' theme. If you’ve overwritten some theme styles 'n yer own CSS, keep this 'n mind.</p>
</li>
</ul>
<h3id="new-8">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Restored compatibility wit' Cap'n Hugo <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.95.0</span></span> or higher. This does not change th' minimum required Cap'n Hugo version.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/siteparam/index.html"><code>siteparam</code> shortcode</a> be now cap'ble 'n display'n nested params as well as support'n text formatt'n.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-17-0">5.17.0 (2023-06-22)</h2>
<h3id="change-8">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' default behavior fer th' copy-to-clipboard feature fer code blocks has changed.</p>
<p>Th' copy-to-clipboard button fer code blocks will now only be displayed if th' reader hovers th' code block.</p>
<p>If ye dislike this new behavior ye can turn it off an' revert t' th' old behavior by add'n <code>[params] disableHoverBlockCopyToClipBoard=true</code> t' yer <code>hugo.toml</code>.</p>
</li>
</ul>
<h3id="new-9">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Restored compatibility wit' Cap'n Hugo <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.114.0</span></span> or higher. This does not change th' minimum required Cap'n Hugo version.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' new <ahref="/hugo-theme-relearn/pir/shortcodes/highlight/index.html"><code>highlight</code> shortcode</a> replaces Hugo’s default implementat'n an' be fully compat'ble. So ye don’t need t' change anyth'n.</p>
<p>In addit'n it offers some extensions. Currently only th' <code>wrap</code> extension opt'n be provided t' control whether a code block should be wrapped or scrolled if t' long t' fit.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-16-0">5.16.0 (2023-06-10)</h2>
<h3id="change-9">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' theme now provides warnings fer deprecated or now unsupported features. Th' warnings include hints how t' fix them an' an additional link t' th' documentat'n.</p>
<p><code>DEPRECATION</code> warnings mark features that still work but may be removed 'n th' future.</p>
<p><code>UNSUPPORTED</code> warnings mark features that will not work anymore.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' 404 error plank was revamped. Hopefully ye will not see this very often.</p>
</li>
</ul>
<h3id="new-10">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/tabs/index.html"><code>tabs</code> shortcode</a> an' th' <ahref="/hugo-theme-relearn/pir/shortcodes/tab/index.html"><code>tab</code> shortcode</a> received some love an' now align wit' their style, color, title an' ay'con parameter t' th' other shorrrtcodes.</p>
<p>Th' visuals be now slightly different compared t' previous versions. Most note'ble, if ye now display a single code block 'n a tab, its default styl'n will adapt t' that o' a code block but wit' a tab handle at th' top.</p>
<p>Additionally th' <code>name</code> parameter was renamed t' <code>title</code> but ye don’t need t' change anyth'n yet as th' old name will be used as a fallback. Nevertheless ye will get deprecat'n warnings while execut'n Hugo.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now optionally supports <ahref="/hugo-theme-relearn/pir/configuration/branding/logo/index.html#change-the-favicon">separate favicons</a> fer light & dark mode.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-15-0">5.15.0 (2023-05-29)</h2>
<h3id="change-10">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Restored compatibility wit' Cap'n Hugo <spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.112.0</span></span> or higher. This does not change th' minimum required Cap'n Hugo version.</p>
<p>Th' <ahref="/hugo-theme-relearn/pir/shortcodes/attachments/index.html"><code>attachments</code> shortcode</a> has compatibility issues wit' newer Cap'n Hugo versions. Ye must switch t' leaf bundles or be locked t' Cap'n Hugo <<code>0.112.0</code> fer now.</p>
<p>It be <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/22"rel="external"target="_self">planned t' refactor</a> th' <code>attchments</code> shortcode 'n th' future. This will make it poss'ble t' use th' shortcode 'n branch bundles again but not 'n simple planks anymore. This will most likely come wit' a break'n change.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/tabs/index.html"><code>tabs</code> shortcode</a> has changed behavior if ye haven’t set th' <code>groupid</code> parameter.</p>
<p>Formerly all tab views without a <code>groupid</code> were treated as so they belong t' th' same group. Now, each tab view be treated as it was given a unique id.</p>
</li>
</ul>
<h3id="new-11">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' already known <code>tabs</code>has a new friend th' <ahref="/hugo-theme-relearn/pir/shortcodes/tab/index.html"><code>tab</code> shortcode</a> t' make it easier t' create a tab view 'n case ye only need one single tab. Really handy if ye want t' flag yer code examples wit' a language identifier.</p>
<p>Additionally fer such a use case, th' whitespace between a tab outline an' th' code be removed if only a single code block be contained.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Besides th' <em>tag</em><ahref="/hugo-theme-relearn/pir/configuration/customization/taxonomy/index.html">taxonomy</a> th' theme now also provides th' <em>category</em> taxonomy out o' th' box an' shows them 'n th' rrrambl'n footer o' each plank.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-14-0">5.14.0 (2023-05-20)</h2>
<h3id="new-12">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' taxonomy planks received some love 'n this release, mak'n them better leverage avail'ble screen space an' add'n translat'n support fer th' taxonomy names.</p>
<p>Hugo’s default taxonmies <code>tags</code> an' <code>categories</code> be already contained 'n th' theme’s i18n files. If ye have self-defined taxonomies, ye can add translat'ns by add'n them t' yer own i18n files. If ye don’t provide translat'ns, th' singualar an' plural forms be taken as configured 'n yer <code>hugo.toml</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> T' give ye more flexibility 'n customiz'n yer article layout a new partial <code>content-header.html</code> be introduced.</p>
<p>This came out o' th' requirement t' cust'mize th' posit'n o' article tags, which by default be displayed above th' title. A second requirement was t' also show additional <ahref="https://gohugo.io/content-management/taxonomies/"rel="external"target="_self">taxonomies</a> not supported by th' theme natively. While Cap'n Hugo supports tags an' categories by default, th' theme only displays tags.</p>
<p>So how t' adjust th' posit'n o' tags start'n from th' theme’s default whar' tags be only shown above th' title?</p>
<ol>
<li>Hide tags above title: Overwrite <code>content-header.html</code> wit' an empty file.</li>
<li>Show tags between title an' rrrambl'n: Overwrite <code>heading-post.html</code> an' add <code>{{ partial "tags.html" . }}</code> t' it.</li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' new parameter <code>breadcrumbSeparator</code> be now avail'ble 'n yer <code>hugo.toml</code> t' change th' - well - separator o' th' breadcrumb items. An appropriate default be 'n place if ye do not configure anyth'n.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-13-0">5.13.0 (2023-05-17)</h2>
<h3id="change-11">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <code>swagger</code> shortcode was deprecated 'n favor fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html"><code>openapi</code> shortcode</a>. Ye don’t need t' change anyth'n yet as th' old name will be used as a fallback. It be planned t' remove th' <code>swagger</code> shortcode 'n th' next major release.</p>
<p>Additionally, th' implemant'n o' this shortcode was switched from RapiDoc t' <ahref="https://github.com/swagger-api/swagger-ui"rel="external"target="_self">SwaggerUI</a>.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-12-0">5.12.0 (2023-05-04)</h2>
<h3id="change-12">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> In th' effort t' comply wit' WCAG standards, th' implementat'n o' th' collaps'ble menu was changed (again). While Internet Explorer 11 has issues 'n display'n it, th' functionality still works.</li>
</ul>
<h3id="new-13">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Support fer th' great <ahref="https://github.com/estruyf/vscode-front-matter"rel="external"target="_self">VSCode Front Matter CMS extension</a> which provides on-premise CMS capabilties t' Cap'n Hugo.</p>
<p>Th' theme provides Front Matter CMS snippets fer its shorrrtcodes. Currently only English an' German be supported. Put a reference into yer <code>frontmatter.json</code> like this</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Support fer languages that be written right t' left (like Arabic) be now complete an' extended t' th' menu, th' top navigat'n bar an' print. Ye can experience this 'n th' <ahref="/hugo-theme-relearn/pir/pir/index.html">pirate translat'n</a>. This feature be not avail'ble 'n Internet Explorer 11.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' scrollbars be now colored accord'n t' their variant color scheme t' better fit into th' visuals.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-11-0">5.11.0 (2023-02-07)</h2>
<h3id="change-13">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' theme removed th' popular <ahref="https://jquery.com"rel="external"target="_self">jQuery</a> library from its distribut'n.</p>
<p>In case ye made changes t' th' theme that be depend'n on this library ye can place a copy o' jQuery into yer <code>static/js</code> directory an' board it from yer own <code>layouts/partials/custom-header.html</code> like this:</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span><ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#parameter">Merrrmaid</a> diagrams can now be configured fer pan an' zoom on site-, page-level or individually fer each graph.</p>
<p>Th' default sett'n o' <code>on</code>, 'n effect since 1.1.0, changed back t' <code>off</code> as there was interference wit' scroll'n on mobile an' big planks.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' theme be now cap'ble t' visually <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#adjust-to-os-settings">adapt t' yer OS’s light/dark mode sett'n</a>.</p>
<p>This be also th' new default sett'n if ye haven’t configured <code>themeVariant</code> 'n yer <code>hugo.toml</code>.</p>
<p>Additionally ye can configure th' variants t' be taken fer light/dark mode wit' th' new <code>themeVariantAuto</code> parameter.</p>
<p>This be not supported fer Internet Explorer 11, which still displays 'n th' <code>relearn-light</code> variant.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' JavaScript code fer handl'n image lightboxes (provided by <ahref="https://noelboss.github.io/featherlight"rel="external"target="_self">Featherlight</a>) was replaced by a CSS-only solut'n.</p>
<p>This also changed th' <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#lightbox">lightbox effects</a> parameter from <code>featherlight=false</code> t' <code>lightbox=false</code>. Nevertheless ye don’t need t' change anyth'n as th' old name will be used as a fallback.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> In th' effort t' comply wit' WCAG standards, th' implementat'n o' th' <ahref="/hugo-theme-relearn/pir/shortcodes/expand/index.html"><code>expand</code> shortcode</a> was changed. While Internet Explorer 11 has issues 'n display'n it, th' functionality still works.</p>
</li>
</ul>
<h3id="new-14">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Czech. This language be not supported fer search.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span><ahref="https://github.com/McShelby/hugo-theme-relearn/tags"rel="external"target="_self">GitHub releases</a> be also now tagged fer th' main version (eg. <code>1.2.x</code>), major version (eg. <code>1.x</code>) an' th' latest (just <code>x</code>) release mak'n it easier fer ye t' pin th' theme t' a certain version.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-10-0">5.10.0 (2023-01-25)</h2>
<h3id="new-15">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/attachments/index.html"><code>attachments</code></a>, <ahref="/hugo-theme-relearn/pir/shortcodes/badge/index.html"><code>badge</code></a>, <ahref="/hugo-theme-relearn/pir/shortcodes/button/index.html"><code>button</code></a> an' <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html"><code>notice</code></a> shorrrtcodes have a new parameter <code>color</code> t' set arbitrary CSS color values.</p>
<p>Additionally th' <code>--ACCENT-color</code> brand color introduced 'n version 5.8.0 be now supported wit' these shorrrtcodes.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-9-0">5.9.0 (2022-12-23)</h2>
<h3id="breaking">Break'n</h3>
<ul>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Wit' this version it be now poss'ble t' not only have sections on th' first menu level but also planks.</p>
<p>It was later discovered, that this causes planks only meant t' be displayed 'n th' <code>More</code> section o' th' menu an' stored directly inside yer <code>rrrambl'n</code> directory t' now show up 'n th' menu as well.</p>
<p>T' <ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#displaying-pages-exclusively-in-a-hugo-menu">get rid</a> o' this undesired behavior ye have two choices:</p>
<p>Make th' plank file a <ahref="https://gohugo.io/content-management/page-bundles/#headless-bundle"rel="external"target="_self">headless branch bundle</a> (contained 'n its own subdirectory an' called <code>_index.md</code>) an' add th' follow'n front matter configurat'n t' th' file (see exampleSite’s <code>content/showcase/_index.en.md</code>). This causes its rrrambl'n t' <strong>not</strong> be ontained 'n th' sitemap.</p>
<p>Store th' plank file fer below a parent headless branch bundle an' add th' follow'n front matter t' he <strong>parent</strong> (see exampleSite’s <code>content/more/_index.en.md</code>). <strong>Don’t give this plank a <code>title</code></strong> as this will cause it t' be shown 'n th' breadcrumbs - a th'n ye most likely don’t want.</p>
<p>In this case, th' file itself can be a branch bundle, leaf bundle or simple plank (see exampleSite’s <code>content/more/credits.en.md</code>). This causes its rrrambl'n t' be contained 'n th' sitemap.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' required directory name fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/attachments/index.html"><code>attachments</code> shortcode</a> was changed fer leaf bundles.</p>
<p>Previously, th' attachments fer leaf bundles 'n non-multilang setups were required t' be 'n a <code>files</code> subdirectory. For plank bundles an' leaf bundles 'n multilang setups they were always required t' be 'n a <code>_index.<LANGCODE>.files</code> or <code>index.<LANGCODE>.files</code> subdirectory accordingly.</p>
<p>This added unnecessary complexity. So attachments fer leaf bundles 'n non-multilang setups can now also reside 'n a <code>index.files</code> directory. Although th' old <code>files</code> directory be now deprecated, if both directories be present, only th' old <code>files</code> directory will be used fer compatibility.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Absolute links prefixed wit' <code>http://</code> or <code>https://</code> be now opened 'n a separate browser tab.</p>
<p>Ye can revert back t' th' old behavior by defin'n <code>externalLinkTarget="_self"</code> 'n th' <code>params</code> section o' yer <code>hugo.toml</code>.</p>
</li>
</ul>
<h3id="new-16">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now supports <ahref="https://gohugo.io/hugo-modules/"rel="external"target="_self">Hugo’s module system</a>.
</li>
</ul>
<hr>
<p></p>
<h2id="5-8-0">5.8.0 (2022-12-08)</h2>
<h3id="new-17">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' new <ahref="/hugo-theme-relearn/pir/shortcodes/badge/index.html"><code>badge</code> shortcode</a> be now avail'ble t' add highly configur'ble markers t' yer rrrambl'n as ye can see it on this plank.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' new <ahref="/hugo-theme-relearn/pir/shortcodes/icon/index.html"><code>ay'con</code> shortcode</a> simplyfies th' usage o' ay'cons. This can even be combined wit' also new <code>badge</code> shortcode.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now supports some o' GFM (GitHub Flavored Markdown) rules an' Cap'n Hugo Marrrkdown extensions, namely <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#tasks">task lists</a>, <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#definitions">defint'n lists</a> an' <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#footnotes">footnotes</a>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> A new color <code>--ACCENT-color</code> was introduced which be used fer highlight'n search results on th' plank. In case ye simply don’t care, ye don’t need t' change anyth'n 'n yer variant stylesheet as th' old <code>yellow</code> color be still used as default.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-7-0">5.7.0 (2022-11-29)</h2>
<h3id="change-15">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' Korean language translat'n fer this theme be now avail'ble wit' th' language code <code>ko</code>. Formerly th' country code <code>kr</code> was used instead.</li>
</ul>
<h3id="new-18">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/button/index.html"><code>button</code> shortcode</a> can now also be used as a real button inside o' HTML forms - although this be a pretty rare use case. Th' documentat'n was updated accordingly.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' search now supports th' Korean language.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-6-0">5.6.0 (2022-11-18)</h2>
<h3id="new-19">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> This release introduces an additional dedicated search plank. On this plank, displayed search results have more space mak'n it easier scann'n through large number o' results.</p>
<p>T' activate this feature, ye need t' <ahref="/hugo-theme-relearn/pir/configuration/sidebar/search/index.html">configure it</a> 'n yer <code>hugo.toml</code> as a new outputformat <code>searchpage</code> fer th' home plank. If ye don’t configure it, no dedicated search plank will be access'ble an' th' theme works as before.</p>
<p>Ye can access th' search plank by either click'n on th' magnifier glass or press'n enter inside o' th' search box.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Keyboard handl'n fer th' TOC an' search was improved.</p>
<p>Press'n <code>CTRL+ALT+t</code> now will not only toggle th' TOC overlay but also places th' focus t' th' first head'n on open'n. Subsequently this makes it poss'ble t' easily select head'ns by us'n th' <code>TAB</code> key.</p>
<p>Th' search received its own brand new keyboard shortcut <code>CTRL+ALT+f</code>. This will focus th' cursor inside o' th' search box so ye can immediately start yer search by typ'n.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye be now able t' turn off th' generat'n o' generator meta tags 'n yer HTML head t' hide th' used versions o' Cap'n Hugo an' this theme.</p>
<p>T' <ahref="/hugo-theme-relearn/pir/configuration/reference/index.html">configure this</a> 'n yer <code>hugo.toml</code> make sure t' set Hugo’s <code>disableHugoGeneratorInject=true</code><strong>an'</strong> also <code>[params] disableGeneratorVersion=true</code>, otherwise Cap'n Hugo will generate a meta tag into yer home plank automagically.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Creat'n o' yer project gets a little bit faster wit' this release.</p>
<p>This addresses increased build time wit' th' version 5 releases. Th' theme now heavily caches partial results lead'n t' improved performance. T' further increase performance, unnecessary parts o' th' plank be now skipped fer creat'n o' th' print output (eg. menus, navigat'n bar, etc.).
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-5-0">5.5.0 (2022-11-06)</h2>
<h3id="change-16">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' way images be processed has changed. Now images be lazy boarded by default which speeds up plank board on slow networks and/or big planks an' also th' print preview.</p>
<p>For that th' JavaScript code t' handle th' <ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#image-effects">lightbox an' image effects</a> on th' client side was removed 'n favour fer static generat'n o' those effects on th' server.</p>
<p>If ye have used HTML directly 'n yer Marrrkdown files, this now has th' downside that it doesn’t respect th' effect query parameter anymore. In this case ye have t' migrate all yer HTML <code>img</code> URLs manually t' th' respective HTML attributes.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span><ahref="/hugo-theme-relearn/pir/configuration/sitemanagement/deployment/index.html">Wit' th' proper sett'ns</a> 'n yer <code>hugo.toml</code> yer plank be now serv'ble from th' local file system us'n <code>file://</code> URLs.</p>
<p>Please note that th' searchbox will only work fer this if ye reconfigure yer outputformat fer th' home plank 'n yer <code>hugo.toml</code> from <code>json</code> t' <code>search</code>. Th' now deprecated <code>json</code> outputformat still works as before, so there be no need t' reconfigure yer installat'n if it be only served from <code>http://</code> or <code>https://</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/button/index.html"><code>button</code> shortcode</a> has a new parameter <code>target</code> t' set th' destinat'n frame/window fer th' URL t' open. If not given, it defaults t' a new window/tab fer external URLs or be not set at all fer internal URLs. Previously even internal URLs whar' opened 'n a new window/tab.</p>
</li>
</ul>
<h3id="new-20">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/math/index.html"><code>math</code> shortcode</a> an' <ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html"><code>mermaid</code> shortcode</a> now also support th' <code>align</code> parameter if Marrrkdown codefences be used.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Support fer languages that be written right t' left (like Arabic). This be only implemented fer th' rrrambl'n area but not th' navigat'n sidebar. This feature be not avail'ble 'n Internet Explorer 11.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Finnish (Suomi).
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-3-0">5.3.0 (2022-10-07)</h2>
<h3id="change-18">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> In th' effort t' comply wit' WCAG standards, th' implementat'n o' th' collaps'ble menu was changed. Th' functionality o' th' new implementat'n does not work wit' old browsers (Internet Explorer 11).</li>
</ul>
<h3id="new-21">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span><ahref="/hugo-theme-relearn/pir/authoring/markdown/index.html#css-classes">Image formatt'n</a> has two new classes t' align images t' th' <code>left</code> or <code>right</code>. Additionally, th' already exist'n <code>inline</code> opt'n be now documented.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Print'n fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html"><code>swagger</code> shortcode</a> was optimized t' expand sections that be usually closed 'n interactive mode. This requires <ahref="/hugo-theme-relearn/pir/configuration/sitemanagement/outputformats/index.html#print-support">print support</a> t' be configured.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="5-2-0">5.2.0 (2022-08-03)</h2>
<h3id="change-19">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> If you’ve set <code>collapsibleMenu = true</code> 'n yer <code>hugo.toml</code>, th' menu will be expanded if a search term be found 'n a collapsed submenu. Th' menu will return t' its initial collapse state once th' search term does not match any submenus.
</li>
</ul>
<hr>
<p></p>
<h2id="5-1-0">5.1.0 (2022-07-15)</h2>
<h3id="hugo-0950">Cap'n Hugo 0.95.0</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.95.0</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="change-20">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Because th' print preview URLs were non deterministic fer normal planks 'n comparison t' plank bundles, this be now changed. Each print preview be now access'ble by add'n a <code>index.print.html</code> t' th' default URL.</p>
<p>Ye can revert this behavior by overwrit'n th' <code>print</code> output format sett'n 'n yer <code>hugo.toml</code>t':</p>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Th' theme changed how JavaScript an' CSS dependencies be boarded t' provide a better performance. In case you’ve added own JavaScript code that depends on th' themes jQuery implementat'n, ye have t' put it into a separate <code>*.js</code> file (if not already) an' add th' <code>defer</code> keyword t' th' <code>script</code> element. Eg.</p>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' way <ahref="/hugo-theme-relearn/pir/authoring/frontmatter/designs/index.html">archetypes</a> be used t' generate output has changed. Th' new systems allows ye, t' redefine exist'n archetypes or even generate yer own ones.</p>
<p>Yer exist'n markdown files will still work like before an' therefore ye don’t need t' change anyth'n after th' upgrade. Nevertheless, it be recommended t' adapt yer exist'n markdown files t' th' new way as follows:</p>
<ul>
<li>
<p>fer yer home plank, add th' front matter parameter <code>archetype = "home"</code> an' remove th' lead'n head'n</p>
</li>
<li>
<p>fer all files contain'n th' deprecated front matter parameter <code>chapter = true</code>, replace it wit' <code>archetype = "chapter"</code> an' remove th' lead'n head'ns</p>
</li>
</ul>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' front matter opt'ns <code>pre</code> / <code>post</code> were renamed t' <code>menuPre</code> / <code>menuPost</code>. Th' old opt'ns will still be used if th' new opt'ns aren’t set. Therefore ye don’t need t' change anyth'n after th' upgrade.</p>
</li>
</ul>
<h3id="new-22">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Add'n new partials <code>heading-pre.html</code> / <code>heading-post.html</code> an' accord'n front matter opt'ns <code>headingPre</code> / <code>headingPost</code> t' modify th' way yer page`s main head'n gets styled.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' new shortcode <code>math</code> be avail'ble t' add beautiful math an' chemical formulae. See th' <ahref="/hugo-theme-relearn/pir/shortcodes/math/index.html">documentat'n</a> fer avail'ble features. This feature will not work wit' Internet Explorer 11.
</p>
</li>
</ul>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-4">Version 4</h1>
See the <ahref="/hugo-theme-relearn/pir/introduction/changelog/4/index.html">changelog of this version</a> for a detailed list of changes.
<hr>
<p></p>
<h2id="4-2-0">4.2.0 (2022-06-23)</h2>
<h3id="breaking">Break'n</h3>
<ul>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Th' second parameter fer th' <ahref="/hugo-theme-relearn/pir/shortcodes/include/index.html"><code>include</code> shortcode</a> was switched 'n mean'n an' was renamed from <code>showfirsthead'n</code> t' <code>hidefirsthead'n</code>. If ye haven’t used this parameter 'n yer shortcode, th' default behavior hasn’t changed an' ye don’t need t' change anyth'n.</p>
<p>If you’ve used th' second boolean parameter, ye have t' rename it an' invert its value t' achieve th' same behavior.</p>
</li>
</ul>
<h3id="change">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Previously, if th' <ahref="/hugo-theme-relearn/pir/shortcodes/tabs/index.html"><code>tabs</code> shortcode</a> could not find a tab item because, th' tabs ended up empty. Now th' first tab be selected instead.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Th' <code>landingPageURL</code> was removed from <code>hugo.toml</code>. Ye can safely remove this as well from yer configurat'n as it be not used anymore. Th' theme will detect th' land'n plank URL automatically an' will point t' th' project’s home plank. If ye want t' support a different link, overwrite th' <code>logo.html</code> partial.</p>
</li>
</ul>
<h3id="new">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> All shorrrtcodes can now be also called from yer partials. Examples fer this be added t' th' documentat'n o' each shortcode.
</li>
</ul>
<hr>
<p></p>
<h2id="4-1-0">4.1.0 (2022-06-12)</h2>
<h3id="new-1">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> While fix'n issues wit' th' search functionality fer non Latin languages, ye can now <ahref="/hugo-theme-relearn/pir/configuration/sidebar/search/index.html#mixed-language-support">configure t' have multiple languages on a single plank</a>.
</li>
</ul>
<hr>
<p></p>
<h2id="4-0-0">4.0.0 (2022-06-05)</h2>
<h3id="breaking-1">Break'n</h3>
<ul>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Th' <code>custom_css</code> config parameter was removed from th' configurat'n. If used 'n an exist'n installat'n, it can be achieved by overrid'n th' <code>custom-header.html</code> template 'n a much more generic manner.</p>
</li>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> Because anchor hover color was not configur'ble without introduc'n more complexity t' th' variant stylesheets, we decided t' remove <code>--MAIN-ANCHOR-color</code> instead. Ye don’t need t' change anyth'n 'n yer custom color stylesheet as th' anchors now get their colors from <code>--MAIN-LINK-color</code> an' <code>--MAIN-ANCHOR-HOVER-color</code> respectively.</p>
</li>
</ul>
<h3id="new-2">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> All shorrrtcodes now support named parameter. Th' positional parameter be still supported but will not be enhanced wit' new features, so ye don’t need t' change anyth'n 'n yer installat'n.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' <ahref="/hugo-theme-relearn/pir/shortcodes/button/index.html"><code>button</code></a> shortcode received some love an' now has a parameter fer th' color style similar t' other shorrrtcodes.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> New colors <code>--PRIMARY-color</code> an' <code>--SECONDARY-color</code> were added t' provide easier modificat'n o' yer custom style. Shorrrtcodes wit' a color style can now have <code>primary</code> or <code>secondary</code> as additional values.</p>
<p>These two colors be th' default fer other, more specific color variables. Ye don’t need t' change anyth'n 'n yer exist'n custom color stylesheets as those variables get reason'ble default values.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Polish. This language be not supported fer search.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' documentat'n fer all shorrrtcodes were revised.
</p>
</li>
</ul>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-3">Version 3</h1>
See the <ahref="/hugo-theme-relearn/pir/introduction/changelog/3/index.html">changelog of this version</a> for a detailed list of changes.
<hr>
<p></p>
<h2id="3-4-0">3.4.0 (2022-04-03)</h2>
<h3id="breaking">Break'n</h3>
<ul>
<li><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> If ye had previously overwritten th' <code>custom-footer.html</code> partial t' add visual elements below th' rrrambl'n o' yer plank, ye have t' move this rrrambl'n t' th' new partial <code>content-footer.html</code>. <code>custom-footer.html</code> was never meant t' contain HTML other than additional styles an' JavaScript.</li>
</ul>
<h3id="new">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> If ye prefer expandable/collaps'ble menu items, ye can now set <code>collapsibleMenu=true</code> 'n yer <code>hugo.toml</code>. This will add arrows t' all menu items that contain sub menus. Th' menu will expand/collapse without navigat'n if ye click on an arrow.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye can activate <ahref="/hugo-theme-relearn/pir/configuration/sitemanagement/outputformats/index.html#print-support">print support</a> 'n yer <code>hugo.toml</code> t' add th' capability t' print whole chapters or even th' complete ship.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Translat'n into Traditional Chinese.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="3-3-0">3.3.0 (2022-03-28)</h2>
<h3id="new-1">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Introduct'n o' new CSS variables t' set th' font. Th' theme distinguishes between <code>--MAIN-font</code> fer all rrrambl'n text an' <code>--CODE-font</code> fer inline or block code. There be additional overrides fer all head'ns. See th' <ahref="/hugo-theme-relearn/pir/configuration/branding/generator/index.html">theme variant generator</a> o' th' exampleSite fer all avail'ble variables.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' new shortcode <code>swagger</code> be avail'ble t' include a UI fer REST OpenAPI specificat'ns. See th' <ahref="/hugo-theme-relearn/pir/shortcodes/openapi/index.html">documentat'n</a> fer avail'ble features. This feature will not work wit' Internet Explorer 11.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="3-2-0">3.2.0 (2022-03-19)</h2>
<h3id="hugo-0930">Cap'n Hugo 0.93.0</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.93.0</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="change">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> In this release th' Merrrmaid JavaScript library will only be boarded on demand if th' plank contains a Merrrmaid shortcode or be us'n Marrrkdown codefences. This changes th' behavior o' <code>disableMermaid</code> config opt'n as follows: If a Merrrmaid shortcode or Marrrkdown codefence be found, th' opt'n will be ignored an' Merrrmaid will be boarded regardlessly.</p>
<p>Th' opt'n be still useful 'n case ye be us'n script'n t' set up yer graph. In this case no shortcode or Marrrkdown codefence be involved an' th' library be not boarded by default. In this case ye can set <code>disableMermaid=false</code> 'n yer front matter t' force th' library t' be boarded. See th' <ahref="/hugo-theme-relearn/pir/configuration/branding/generator/index.html">theme variant generator</a> o' th' exampleSite fer an example.</p>
</li>
</ul>
<h3id="new-2">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Additional color variant vari'ble <code>--MERMAID-theme</code> t' set th' variant’s Merrrmaid theme. This causes th' Merrrmaid theme t' switch wit' th' color variant if it defers from th' sett'n o' th' formerly selected color variant.
</li>
</ul>
<hr>
<p></p>
<h2id="3-1-0">3.1.0 (2022-03-15)</h2>
<h3id="new-3">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span><ahref="/hugo-theme-relearn/pir/shortcodes/attachments/index.html"><code>attachment</code></a> an' <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html"><code>notice</code></a> shorrrtcodes have a new parameter t' override th' default ay'con. Allowed values be all <ahref="https://fontawesome.com/v5/search?m=free"rel="external"target="_self">Font Awesome 5 Free</a> ay'cons.
</li>
</ul>
<hr>
<p></p>
<h2id="3-0-0">3.0.0 (2022-02-22)</h2>
<h3id="breaking-1">Break'n</h3>
<ul>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> We made changes t' th' menu footer. If ye have yer <code>menu-footer.html</code><ahref="/hugo-theme-relearn/pir/configuration/customization/partials/index.html">partial overridden</a>, ye may have t' review th' styl'n (eg. margins/paddings) 'n yer partial. For a reference take a look into th' <code>menu-footer.html</code> partial that be com'n wit' th' exampleSite.</p>
<p>This change was made t' allow yer own menu footer t' be placed right after th' so called prefooter that comes wit' th' theme (contain'n th' language switch an' <em>Clear history</em> functionality).</p>
</li>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> We have changed th' default colors from th' original Learrrn theme (the purple menu header) t' th' Relearrrn defaults (the light green menu header) as used 'n th' official documentat'n.</p>
<p>This change will only affect yer installat'n if you’ve not set th' <code>themeVariant</code> parameter 'n yer <code>hugo.toml</code>. <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#theme-variant">If ye still want t' use th' Learrrn color variant</a>, ye have t' explicitly set <code>themeVariant="learn"</code> 'n yer <code>hugo.toml</code>.</p>
<p>Avast, that this will also affect yer ship if viewed wit' Internet Explorer 11 but 'n this case it can not be reconfigured as Internet Explorer does not support CSS variables.</p>
</li>
</ul>
<h3id="change-1">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Due t' a bug, that we couldn’t fix 'n a general manner fer color variants, we decided t' remove <code>--MENU-SEARCH-BOX-ICONS-color</code> an' introduced <code>--MENU-SEARCH-color</code> instead. Ye don’t need t' change anyth'n 'n yer custom color stylesheet as th' old name will be used as a fallback.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> For consistency reasons, we renamed <code>--MENU-SEARCH-BOX-color</code> t' <code>--MENU-SEARCH-BORDER-color</code>. Ye don’t need t' change anyth'n 'n yer custom color stylesheet as th' old name will be used as a fallback.</p>
</li>
</ul>
<h3id="new-4">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Wit' this release ye be now cap'ble t' define yer own <em>dark mode</em> variants.</p>
<p>T' make this poss'ble, we have introduced a lot more color variables ye can use 'n <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#theme-variant">yer color variants</a>. Yer old variants will still work an' don’t need t' be changed as appropriate fallback values be used by th' theme. Nevertheless, th' new colors allow fer much more customizat'n.</p>
<p>T' see what’s now poss'ble, see th' new variants <code>relearn-dark</code> an' <code>neon</code> that be com'n wit' this release.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> T' make th' creat'n o' new variants easier fer ye, we’ve added a new interactive <ahref="/hugo-theme-relearn/pir/configuration/branding/generator/index.html">theme variant generator</a>. This feature will not work wit' Internet Explorer 11.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye can now configure multiple color variants 'n yer <code>hugo.toml</code>. In this case, th' first variant be th' default chosen on first view an' a variant selector will be shown 'n th' menu footer. See th' <ahref="/hugo-theme-relearn/pir/configuration/branding/colors/index.html#multiple-variants">documentat'n</a> fer configurat'n.</p>
<p>Avast, that th' new variant selector will not work wit' Internet Explorer 11 as it does not support CSS variables. Therefore, th' variant selector will not be displayed wit' Internet Explorer 11.
</p>
</li>
</ul>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-2">Version 2</h1>
See the <ahref="/hugo-theme-relearn/pir/introduction/changelog/2/index.html">changelog of this version</a> for a detailed list of changes.
<hr>
<p></p>
<h2id="2-9-0">2.9.0 (2021-11-19)</h2>
<h3id="breaking">Break'n</h3>
<ul>
<li>
<p><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span> This release removes th' themes implementat'n o' <code>ref</code>/<code>relref</code> 'n favor fer Hugo’s standard implementat'n. This be because o' inconsistencies wit' th' themes implementat'n. In advantage, yer project becomes standard compliant an' exchang'n this theme 'n yer project t' some other theme will be effortless.</p>
<p>In a standard compliant form ye must not link t' th' <code>*.md</code> file but t' its logical name. You’ll see, referenc'n other planks becomes much easier. All three types result 'n th' same reference:</p>
<p>If you’ve linked from a plank o' one language t' a plank o' another language, conversion be a bit more difficult but <ahref="https://gohugo.io/content-management/cross-references/#link-to-another-language-version"rel="external"target="_self">Cap'n Hugo got ye covered</a> as well.</p>
<p>Also, th' old themes implementat'n allowed refs t' non-exist'n rrrambl'n. This will cause Hugo’s implementat'n t' show th' error below an' abort th' generat'n. If yer project relies on this old behavior, ye can <ahref="https://gohugo.io/content-management/cross-references/#link-to-another-language-version"rel="external"target="_self">reconfigure th' error handl'n</a> o' Hugo’s implementat'n.</p>
<p>In th' best case yer usage o' th' old implementat'n be already standard compliant an' ye don’t need t' change anyth'n. You’ll notice this very easily once you’ve started <code>hugo server</code> after an upgrade an' no errors be written t' th' console.</p>
<p>Ye may see errors on th' console after th' update 'n th' form:</p>
<p>In this case, ye must apply one o' two opt'ns:</p>
<ol>
<li>
<p>Start up a text editor wit' regular expression support fer search an' replace. Search fer <code>(ref\s+"[^"]*?)(?:/_index|/index)?(?:\.md)?(#[^"]*?)?"</code> an' replace it by <code>$1$2"</code> 'n all <code>*.md</code> files. <strong>This be th' recommended choice</strong>.</p>
</li>
<li>
<p>Copy th' old implementat'n files <code>theme/hugo-theme-relearn/layouts/shortcode/ref.html</code> an' <code>theme/hugo-theme-relearn/layouts/shortcode/relref.html</code> t' yer own projects <code>layouts/shortcode/ref.html</code> an' <code>layouts/shortcode/relref.html</code> respectively. <strong>This be not recommended</strong> as yer project will still rely on non-standard behavior afterwards.
</p>
</li>
</ol>
</li>
</ul>
<hr>
<p></p>
<h2id="2-8-0">2.8.0 (2021-11-03)</h2>
<h3id="change">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Although never officially documented, this release removes th' font <code>Novacento</code>/<code>Novecento</code>. If ye use it 'n an overwritten CSS please replace it wit' <code>Work Sans</code>. This change was necessary as Novacento did not provide all Latin special characters an' lead t' mixed styled character text eg. fer Czech.</li>
</ul>
<h3id="new">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' theme now supports favicons served from <code>static/images/</code> named as <code>favicon</code> or <code>logo</code> 'n SVG, PNG or ICO format <ahref="/hugo-theme-relearn/pir/configuration/branding/logo/index.html#change-the-favicon">out o' th' box</a>. An overridden partial <code>layouts/partials/favicon.html</code> may not be necessary anymore 'n most cases.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye can hide th' t'ble o' contents menu fer th' whole ship by sett'n th' <code>disableToc</code> opt'n 'n yer <code>hugo.toml</code>. For an example see <ahref="/hugo-theme-relearn/pir/configuration/reference/index.html">th' example configurat'n</a>.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="2-7-0">2.7.0 (2021-10-24)</h2>
<h3id="new-1">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Optional second parameter fer <ahref="/hugo-theme-relearn/pir/shortcodes/notice/index.html"><code>notice</code></a> shortcode t' set title 'n box header.
</li>
</ul>
<hr>
<p></p>
<h2id="2-6-0">2.6.0 (2021-10-21)</h2>
<h3id="new-2">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Yer ship can now be served from a subdirectory if ye set <code>baseURL</code> 'n yer <code>hugo.toml</code>. See th' <ahref="/hugo-theme-relearn/pir/configuration/sitemanagement/deployment/index.html">documentat'n</a> fer a detailed example.
</li>
</ul>
<hr>
<p></p>
<h2id="2-5-0">2.5.0 (2021-10-08)</h2>
<h3id="change-1">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> New colors <code>--CODE-BLOCK-color</code> an' <code>--CODE-BLOCK-BG-color</code> were added t' provide a fallback fer Hugo’s rules highlight'n 'n case no language was given or th' language be unsupported. Ideally th' colors be set t' th' same values as th' ones from yer chosen chroma style.
</li>
</ul>
<hr>
<p></p>
<h2id="2-4-0">2.4.0 (2021-10-07)</h2>
<h3id="change-2">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Creat'n o' customized stylesheets was simplified down t' only contain th' CSS variables. Everyth'n else can an' should be deleted from yer custom stylesheet t' assure everyth'n works fine. For th' predefined stylesheet variants, this change be already included.</li>
</ul>
<h3id="new-3">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Hidden planks be displayed by default 'n their accord'n tags plank. Ye can now turn off this behavior by sett'n <code>disableTagHiddenPages=true</code> 'n yer <code>hugo.toml</code>.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye can define th' expansion state o' yer menus fer th' whole ship by sett'n th' <code>alwaysopen</code> opt'n 'n yer <code>hugo.toml</code>. Please see further <ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#expand-state-of-submenus">documentat'n</a> fer poss'ble values an' default behavior.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> New front matter <code>ordersectionsby</code> opt'n t' change immediate children sort'n 'n menu an' <code>children</code> shortcode. Poss'ble values be <code>title</code> or <code>weight</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Alternate rrrambl'n o' a plank be now advertised 'n th' HTML meta tags. See <ahref="https://gohugo.io/templates/rss/#reference-your-rss-feed-in-head"rel="external"target="_self">Cap'n Hugo documentat'n</a>.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="2-3-0">2.3.0 (2021-09-13)</h2>
<h3id="hugo-0810">Cap'n Hugo 0.81.0</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.81.0</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="new-4">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Showcase multilanguage features by provid'n a documentat'n translat'n “fer us pirrrates”. There will be no other translat'ns besides th' original English one an' th' Piratish one due t' maintenance constraints.
</li>
</ul>
<hr>
<p></p>
<h2id="2-2-0">2.2.0 (2021-09-09)</h2>
<h3id="new-5">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Hidden planks be displayed by default 'n th' sitemap generated by Cap'n Hugo an' be therefore vis'ble fer search engine index'n. Ye can now turn off this behavior by sett'n <code>disableSeoHiddenPages=true</code> 'n yer <code>hugo.toml</code>.
</li>
</ul>
<hr>
<p></p>
<h2id="2-1-0">2.1.0 (2021-09-07)</h2>
<h3id="hugo-0690">Cap'n Hugo 0.69.0</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.69.0</span></span> This release requires a newer Cap'n Hugo version.</li>
</ul>
<h3id="change-3">Change</h3>
<ul>
<li><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> In case th' site’s structure contains additional *.md files not part o' th' ship (eg files that be meant t' be included by ship planks - see <code>CHANGELOG.md</code> 'n th' exampleSite), they will now be ignored by th' search.</li>
</ul>
<h3id="new-6">New</h3>
<ul>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Hidden planks be indexed fer th' ship search by default. Ye can now turn off this behavior by sett'n <code>disableSearchHiddenPages=true</code> 'n yer <code>hugo.toml</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> If a search term be found 'n an <code>expand</code> shortcode, th' expand will be opened.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Th' menu will scroll th' active item into view on board.
</p>
</li>
</ul>
<hr>
<p></p>
<h2id="2-0-0">2.0.0 (2021-08-28)</h2>
<h3id="change-4">Change</h3>
<ul>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Rules highlight'n was switched t' th' <ahref="https://gohugo.io/content-management/syntax-highlighting/"rel="external"target="_self">built 'n Hugo mechanism</a>. Ye may need t' configure a new stylesheet or decide t' roll ye own as described on 'n th' Cap'n Hugo documentat'n</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> In th' predefined stylesheets there was a typo an' <code>--MENU-HOME-LINK-HOVERED-color</code> must be changed t' <code>--MENU-HOME-LINK-HOVER-color</code>. Ye don’t need t' change anyth'n 'n yer custom color stylesheet as th' old name will be used as a fallback.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span><code>--MENU-HOME-LINK-color</code> an' <code>--MENU-HOME-LINK-HOVER-color</code> were miss'n 'n th' documentat'n. Ye should add them t' yer custom stylesheets if ye want t' override th' defaults.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> Arrow navigat'n an' <code>children</code> shortcode were ignor'n sett'n fer <code>ordersectionsby</code>. This be now changed an' may result 'n different sort'n order o' yer sub planks.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> If hidden planks be accessed directly by typ'n their URL, they will be exposed 'n th' menu.</p>
</li>
<li>
<p><spanclass="badge cstyle note badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-circle"></i></span><spanclass="badge-content">Change</span></span> A plank without a <code>title</code> will be treated as <code>hidden=true</code>.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Ye can define th' expansion state o' yer menus 'n th' front matter. Please see further <ahref="/hugo-theme-relearn/pir/configuration/sidebar/menus/index.html#expand-state-of-submenus">documentat'n</a> fer poss'ble values an' default behavior.</p>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> New partials fer defin'n pre/post rrrambl'n fer menu items an' th' rrrambl'n. See <ahref="/hugo-theme-relearn/pir/configuration/customization/partials/index.html">documentat'n</a> fer further read'n.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Shortcode <ahref="/hugo-theme-relearn/pir/shortcodes/children/index.html"><code>children</code></a> wit' new parameter <code>containerstyle</code>.</p>
</li>
<li>
<p><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> New shortcode <ahref="/hugo-theme-relearn/pir/shortcodes/include/index.html"><code>include</code></a> t' include arbitrary file rrrambl'n into a plank.
</p>
</li>
</ul>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-1">Version 1</h1>
See the <ahref="/hugo-theme-relearn/pir/introduction/changelog/1/index.html">changelog of this version</a> for a detailed list of changes.
<hr>
<p></p>
<h2id="1-2-0">1.2.0 (2021-07-26)</h2>
<h3id="new">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Shortcode <ahref="/hugo-theme-relearn/pir/shortcodes/expand/index.html"><code>expand</code></a> wit' new parameter t' open on plank board.
</li>
</ul>
<hr>
<p></p>
<h2id="1-1-0">1.1.0 (2021-07-02)</h2>
<h3id="breaking">Break'n</h3>
<ul>
<li><spanclass="badge cstyle warning badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-exclamation-triangle"></i></span><spanclass="badge-content">Break'n</span></span><ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html">Merrrmaid</a> diagrams can now be panned an' zoomed. This isn’t configur'ble yet.</li>
</ul>
<h3id="new-1">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span><ahref="/hugo-theme-relearn/pir/shortcodes/mermaid/index.html#settings"><code>Merrrmaid</code></a> config opt'ns can be set 'n <code>hugo.toml</code>.
</li>
</ul>
<hr>
<p></p>
<h2id="1-0-0">1.0.0 (2021-07-01)</h2>
<h3id="hugo-0650">Cap'n Hugo 0.65.0</h3>
<ul>
<li><spanclass="badge cstyle default badge-with-title"><spanclass="badge-title"><iclass="fa-fw fab fa-hackerrank"></i></span><spanclass="badge-content"style="background-color: fuchsia;">0.65.0</span></span> Th' requirement fer th' Cap'n Hugo version o' this theme be th' same as fer th' Learrrn theme version 2.5.0 on 2021-07-01.</li>
</ul>
<h3id="new-2">New</h3>
<ul>
<li><spanclass="badge cstyle info badge-with-title"><spanclass="badge-title"><iclass="fa-fw fas fa-plus-circle"></i></span><spanclass="badge-content">New</span></span> Initial fork o' th' <ahref="https://github.com/matcornic/hugo-theme-learn"rel="external"target="_self">Learrrn theme</a> based on Learrrn 2.5.0 on 2021-07-01. This introduces no new features besides a global rename t' <code>Relearrrn</code> an' a new logo. For th' reasons behind fork'n th' Learrrn theme, see <ahref="https://github.com/matcornic/hugo-theme-learn/issues/442#issuecomment-907863495"rel="external"target="_self">this comment</a> 'n th' Learrrn issues.
</li>
</ul>
<footerclass="footline">
</footer>
</article>
</section>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="changelog">Changelog</h1>
<ahref="/hugo-theme-relearn/pir/introduction/releasenotes/index.html">★ What's new in this version ★</a>
<li>[<strong>feature</strong>][<strong>change</strong>] children: use LinkTitle instead o' Title <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/939"rel="external"target="_self">#939</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] menu: support nested Cap'n Hugo menus <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/423"rel="external"target="_self">#423</a></li>
<li>[<strong>feature</strong>] menu: support fer external links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/148"rel="external"target="_self">#148</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: replace font <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/922"rel="external"target="_self">#922</a></li>
<li>[<strong>feature</strong>][<strong>break'n</strong>] theme: reduce build time <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/685"rel="external"target="_self">#685</a></li>
<li>[<strong>task</strong>] theme: remove deprecat'n war'n fer usage o' .Sites.First <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/912"rel="external"target="_self">#912</a></li>
<li>[<strong>task</strong>][<strong>break'n</strong>] search: improve generat'n o' dedicated search plank <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/888"rel="external"target="_self">#888</a></li>
<li>[<strong>task</strong>] theme: remove warning fer usage o' .Site.IsMultiLingual <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/877"rel="external"target="_self">#877</a></li>
<li>[<strong>task</strong>][<strong>break'n</strong>] roadmap: upcom'n major changes fer 7.0.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/715"rel="external"target="_self">#715</a>
<li>[<strong>bug</strong>] highlight: remove additional newlines from code if copied from cursor select'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/925"rel="external"target="_self">#925</a>
<li>[<strong>feature</strong>] notice: support user defined box styles <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/913"rel="external"target="_self">#913</a></li>
<li>[<strong>feature</strong>] frontmatter: add <code>expanded</code> parameter fer shorrrtcodes <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/911"rel="external"target="_self">#911</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] notice: collapse borders if single code block be displayed <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/906"rel="external"target="_self">#906</a></li>
<li>[<strong>task</strong>] build: add link fer migrat'n into changelog <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/915"rel="external"target="_self">#915</a></li>
<li>[<strong>bug</strong>] mermaid: classDiagram breaks when us'n «interface»<ahref="https://github.com/McShelby/hugo-theme-relearn/issues/895"rel="external"target="_self">#895</a></li>
<li>[<strong>bug</strong>] toc: don’t show toc button if empty <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/893"rel="external"target="_self">#893</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] anchor: add opt'n t' scroll into view <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/886"rel="external"target="_self">#886</a></li>
<li>[<strong>feature</strong>] theme: support fer GitHub styled alerts <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/885"rel="external"target="_self">#885</a></li>
<li>[<strong>bug</strong>] arrownav: avoid rude event handl'n fer form elements <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/887"rel="external"target="_self">#887</a></li>
<li>[<strong>bug</strong>] link: link resolv'n stopped work'n 'n certain configurat'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/882"rel="external"target="_self">#882</a>
<li>[<strong>feature</strong>][<strong>change</strong>] assetbuster: use asset buster fer all resources <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/875"rel="external"target="_self">#875</a></li>
<li>[<strong>feature</strong>] theme: sync t' Cap'n Hugo changes fer PublishDate <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/872"rel="external"target="_self">#872</a></li>
<li>[<strong>feature</strong>] theme: allow errorlevel override on plank level <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/870"rel="external"target="_self">#870</a></li>
<li>[<strong>feature</strong>] relref: provide shorrrtcodes t' lift certain restrict'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/864"rel="external"target="_self">#864</a></li>
<li>[<strong>feature</strong>] openapi: adjust t' Hugo’s build-in link render hook <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/860"rel="external"target="_self">#860</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] include: adjust t' Hugo’s build-in link render hook <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/859"rel="external"target="_self">#859</a></li>
<li>[<strong>bug</strong>] variant: auto variant references potentially wrong chroma style <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/873"rel="external"target="_self">#873</a></li>
<li>[<strong>bug</strong>] schema: sync t' Cap'n Hugo changes fer LanguageCode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/866"rel="external"target="_self">#866</a></li>
<li>[<strong>bug</strong>] alias: index.html has displays error 'n rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/851"rel="external"target="_self">#851</a></li>
<li>[<strong>task</strong>] theme: remove special cases fer LanguageCode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/861"rel="external"target="_self">#861</a></li>
<li>[<strong>feature</strong>] schema: add schema support 'n meta data <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/844"rel="external"target="_self">#844</a></li>
<li>[<strong>feature</strong>] include: use Hugo’s resources <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/835"rel="external"target="_self">#835</a></li>
<li>[<strong>feature</strong>] math: allow t' work wit' Hugo’s passthrough configurat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/832"rel="external"target="_self">#832</a></li>
<li>[<strong>feature</strong>] i18n: add Romanian translat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/828"rel="external"target="_self">#828</a></li>
<li>[<strong>feature</strong>][<strong>break'n</strong>] theme: end support fer Internet Explorer 11 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/584"rel="external"target="_self">#584</a></li>
<li>[<strong>bug</strong>] frontmatter: move frontmatter config fer exampleSite out o' root <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/843"rel="external"target="_self">#843</a></li>
<li>[<strong>bug</strong>] images: color outline us'n primary color <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/838"rel="external"target="_self">#838</a></li>
<li>[<strong>bug</strong>][<strong>break'n</strong>] variant: avoid Cap'n Hugo permission errors on build <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/831"rel="external"target="_self">#831</a></li>
<li>[<strong>task</strong>][<strong>break'n</strong>] search: remove JSON outputformat fer search index <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/846"rel="external"target="_self">#846</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] link: warn if fragment be not found <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/823"rel="external"target="_self">#823</a></li>
<li>[<strong>feature</strong>] theme: add styl'n fer selected HTML elements <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/822"rel="external"target="_self">#822</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] dependencies: make loader more versatile <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/820"rel="external"target="_self">#820</a></li>
<li>[<strong>feature</strong>] breadcrumb: use .LinkTitle instead o' .Title if avail'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/816"rel="external"target="_self">#816</a></li>
</ul>
<h3id="fixes">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] scrollbar: scroll bar 'n side menu gets stuck 'n dragged state on mobile <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/808"rel="external"target="_self">#808</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="5262-2024-03-18">5.26.2 (2024-03-18)</h2>
<h3id="enhancements-1">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] ay'cons: use fixed width t' ease layout <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/812"rel="external"target="_self">#812</a></li>
</ul>
<h3id="fixes-1">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] search: broken since version 5.26.1 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/813"rel="external"target="_self">#813</a></li>
<li>[<strong>bug</strong>] search: fix result links fer planks 'n root <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/810"rel="external"target="_self">#810</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5261-2024-03-17">5.26.1 (2024-03-17)</h2>
<h3id="fixes-2">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] mermaid: show reset button after pan <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/807"rel="external"target="_self">#807</a></li>
<li>[<strong>bug</strong>] openapi: make it run fer <code>file://</code> protocol <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/806"rel="external"target="_self">#806</a></li>
<li>[<strong>bug</strong>] theme: fix relative path detect'n if <code>relativeURLs=false</code><ahref="https://github.com/McShelby/hugo-theme-relearn/issues/804"rel="external"target="_self">#804</a>
<li>[<strong>feature</strong>] render-hook: support Marrrkdown attributes <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/795"rel="external"target="_self">#795</a></li>
<li>[<strong>feature</strong>] theme: support full plank width <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/752"rel="external"target="_self">#752</a></li>
</ul>
<h3id="fixes-3">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] clipboard: fix broken style if block code be 'n t'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/790"rel="external"target="_self">#790</a></li>
<li>[<strong>bug</strong>] nav: browser back navigat'n does not jump t' th' correct posit'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/509"rel="external"target="_self">#509</a></li>
</ul>
<h3id="maintenance">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] build: update all avail'ble act'ns t' nodejs 20 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/802"rel="external"target="_self">#802</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: print out GitInfo 'n plank footer if configured <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/786"rel="external"target="_self">#786</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] resources: new shortcode t' deprecate attachments shortcode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/22"rel="external"target="_self">#22</a></li>
<li>[<strong>feature</strong>] link: make resolut'n report'n configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/774"rel="external"target="_self">#774</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5240-2024-02-17">5.24.0 (2024-02-17)</h2>
<h3id="enhancements-6">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: compatibility wit' Cap'n Hugo 0.123 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/771"rel="external"target="_self">#771</a></li>
<li>[<strong>feature</strong>] topbar: support editURL 'n frontmatter <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/764"rel="external"target="_self">#764</a></li>
<li>[<strong>feature</strong>] menu: use –MENU-WIDTH-S t' adjust mobile flyout <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/761"rel="external"target="_self">#761</a></li>
<li>[<strong>feature</strong>] figure: support built-in shortcode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/746"rel="external"target="_self">#746</a></li>
<li>[<strong>feature</strong>] theme: make head'n a template <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/744"rel="external"target="_self">#744</a></li>
<li>[<strong>feature</strong>] taxonomy: make arrow nav browse through terms <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/742"rel="external"target="_self">#742</a></li>
<li>[<strong>feature</strong>] theme: switch from config.toml t' hugo.toml <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/741"rel="external"target="_self">#741</a></li>
<li>[<strong>feature</strong>] button: make non-interactive if used as mock <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/740"rel="external"target="_self">#740</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] topbar: allow text fer button <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/739"rel="external"target="_self">#739</a></li>
<li>[<strong>feature</strong>] theme: run hugo demo ship without warning <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/736"rel="external"target="_self">#736</a></li>
<li>[<strong>feature</strong>] menu: make swipe handler passive <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/735"rel="external"target="_self">#735</a></li>
<li>[<strong>feature</strong>] i18n: support standard Cap'n Hugo opt'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/733"rel="external"target="_self">#733</a></li>
<li>[<strong>feature</strong>] a11y: show tab focus on images <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/730"rel="external"target="_self">#730</a></li>
<li>[<strong>feature</strong>] a11y: improve discover'n links on keyboard navigat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/726"rel="external"target="_self">#726</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] variant: increase contrast fer light themes <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/722"rel="external"target="_self">#722</a></li>
<li>[<strong>feature</strong>] theme: break build if minimum Cap'n Hugo version be not matched <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/719"rel="external"target="_self">#719</a></li>
<li>[<strong>feature</strong>] taxonomy: hum'nize term on miss'n term title <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/713"rel="external"target="_self">#713</a></li>
</ul>
<h3id="fixes-7">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] taxonomy: display translated title <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/772"rel="external"target="_self">#772</a></li>
<li>[<strong>bug</strong>] highlight: fix codefence rules 'n Hugo >= 0.121.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/749"rel="external"target="_self">#749</a></li>
<li>[<strong>bug</strong>] link: fix links t' planks contain'n dots 'n their name <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/748"rel="external"target="_self">#748</a></li>
<li>[<strong>bug</strong>] image: get resource images if link be prefixed wit' <code>./</code><ahref="https://github.com/McShelby/hugo-theme-relearn/issues/747"rel="external"target="_self">#747</a></li>
<li>[<strong>bug</strong>] theme: switch dependency colors on OS color scheme change <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/745"rel="external"target="_self">#745</a></li>
<li>[<strong>feature</strong>] taxonomy: warn on miss'n term title <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/709"rel="external"target="_self">#709</a></li>
</ul>
<h3id="fixes-8">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] taxonomy: fix sort'n o' terms on rrrambl'n planks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/710"rel="external"target="_self">#710</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5231-2023-10-30">5.23.1 (2023-10-30)</h2>
<h3id="enhancements-8">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] taxonomy: improve term plank <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/705"rel="external"target="_self">#705</a></li>
</ul>
<h3id="fixes-9">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] variant: fix typo 'n chroma-learn.css <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/708"rel="external"target="_self">#708</a></li>
<li>[<strong>feature</strong>] taxonomy: allow fer rrrambl'n on term planks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/701"rel="external"target="_self">#701</a></li>
<li>[<strong>feature</strong>] theme: write full file path on warnings <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/699"rel="external"target="_self">#699</a></li>
<li>[<strong>feature</strong>] theme: show anchor link an' copy t' clipboard button on mobile <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/697"rel="external"target="_self">#697</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] config: adjust t' changes 'n Hugo 0.120 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/693"rel="external"target="_self">#693</a></li>
<li>[<strong>feature</strong>] variants: add more contrast t' neon <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/692"rel="external"target="_self">#692</a></li>
<li>[<strong>feature</strong>] mermaid: only show zoom reset button if zoomed <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/691"rel="external"target="_self">#691</a></li>
<li>[<strong>feature</strong>] theme: add social media meta informat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/683"rel="external"target="_self">#683</a></li>
<li>[<strong>feature</strong>] links: warn if ref/relref be used falsly <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/681"rel="external"target="_self">#681</a></li>
<li>[<strong>feature</strong>] menu: make width configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/677"rel="external"target="_self">#677</a></li>
<li>[<strong>feature</strong>] tabs: use color fer link o' inactive tabs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/675"rel="external"target="_self">#675</a></li>
<li>[<strong>feature</strong>] taxonomy: modularize term list generat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/671"rel="external"target="_self">#671</a></li>
<li>[<strong>bug</strong>] links: extra space before link text <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/700"rel="external"target="_self">#700</a></li>
<li>[<strong>bug</strong>] theme: fix mobile layout fer width=48rem <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/676"rel="external"target="_self">#676</a></li>
<li>[<strong>bug</strong>] taxonomy: display terms 'n planks if <code>removePathAccents=true</code><ahref="https://github.com/McShelby/hugo-theme-relearn/issues/669"rel="external"target="_self">#669</a></li>
<li>[<strong>feature</strong>] math: hide unrendered math <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/663"rel="external"target="_self">#663</a></li>
<li>[<strong>feature</strong>] tabs: improve a11y by remov'n duplicate hidden title <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/662"rel="external"target="_self">#662</a></li>
<li>[<strong>bug</strong>] variant: fix sidebar-flyout borders color fer zen <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/667"rel="external"target="_self">#667</a></li>
<li>[<strong>bug</strong>] clipboard: fix RTL locat'n o' tooltip <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/661"rel="external"target="_self">#661</a></li>
<li>[<strong>bug</strong>] clipboard: ignore RTL fer code <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/660"rel="external"target="_self">#660</a></li>
<li>[<strong>bug</strong>] theme: fix id generat'n fer markdownified titles <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/657"rel="external"target="_self">#657</a></li>
<li>[<strong>bug</strong>] mermaid: avoid graph bomb'n on hugo –minify <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/656"rel="external"target="_self">#656</a></li>
<li>[<strong>bug</strong>] mermaid: fix width fer some graphs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/655"rel="external"target="_self">#655</a>
<li>[<strong>feature</strong>] markdown: add interlace color fer tables <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/648"rel="external"target="_self">#648</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] menu: optionally dis'ble index planks fer sections <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/642"rel="external"target="_self">#642</a></li>
<li>[<strong>bug</strong>][<strong>change</strong>] theme: avoid id collisions between head'ns an' theme <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/646"rel="external"target="_self">#646</a></li>
<li>[<strong>bug</strong>] theme: remove HTML validat'n errors <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/644"rel="external"target="_self">#644</a></li>
<li>[<strong>bug</strong>] breadcrumb: remove superflous whitespace between items <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/643"rel="external"target="_self">#643</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="5210-2023-09-18">5.21.0 (2023-09-18)</h2>
<h3id="enhancements-12">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] topbar: make buttons configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/639"rel="external"target="_self">#639</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: support fer colored borders between menu an' rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/626"rel="external"target="_self">#626</a></li>
<li>[<strong>feature</strong>] images: document usage o' images wit' links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/576"rel="external"target="_self">#576</a></li>
</ul>
<h3id="fixes-14">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] highlight: fix render'n fer Cap'n Hugo < 0.111 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/630"rel="external"target="_self">#630</a></li>
<li>[<strong>bug</strong>] search: remove link underline on dedicated search plank <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/627"rel="external"target="_self">#627</a></li>
<li>[<strong>bug</strong>] highlight: don’t switch t' block view if hl_inline=true <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/618"rel="external"target="_self">#618</a></li>
<li>[<strong>bug</strong>] variant: minor adjustments t' zen variants <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/617"rel="external"target="_self">#617</a></li>
<li>[<strong>bug</strong>] mermaid: lazy render graph if it be initially hidden <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/187"rel="external"target="_self">#187</a></li>
<li>[<strong>feature</strong>] highlight: add title parameter <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/616"rel="external"target="_self">#616</a></li>
<li>[<strong>feature</strong>] variant: signal variant switch as event <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/614"rel="external"target="_self">#614</a></li>
<li>[<strong>feature</strong>] variant: add zen variant 'n light an' dark <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/613"rel="external"target="_self">#613</a></li>
<li>[<strong>bug</strong>] siteparam: avoid halt if param be a map/slice <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/611"rel="external"target="_self">#611</a></li>
<li>[<strong>bug</strong>] mermaid: fix broken zoom since update t' v10 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/608"rel="external"target="_self">#608</a></li>
<li>[<strong>bug</strong>] mermaid: variant generator diagram does not respond t' events <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/607"rel="external"target="_self">#607</a></li>
<li>[<strong>bug</strong>] print: avoid chroma leak fer relearn-dark <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/605"rel="external"target="_self">#605</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] shorrrtcodes: add more deprecat'n warnings <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/598"rel="external"target="_self">#598</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] shorrrtcodes: change <code>context</code> parameter t' <code>plank</code> if called as partial <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/595"rel="external"target="_self">#595</a></li>
<li>[<strong>feature</strong>] siteparam: support nested parameters an' text formatt'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/590"rel="external"target="_self">#590</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] a11y: improve when tabb'n through links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/581"rel="external"target="_self">#581</a></li>
</ul>
<h3id="fixes-16">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] openapi: inherit RTL sett'n from Cap'n Hugo rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/600"rel="external"target="_self">#600</a></li>
<li>[<strong>bug</strong>] 404: fix display 'n RTL <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/597"rel="external"target="_self">#597</a></li>
<li>[<strong>bug</strong>] highlight: fix posit'n o' copy-to-clipboard button 'n RTL <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/594"rel="external"target="_self">#594</a></li>
<li>[<strong>bug</strong>] search: fix typo 'n output format <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/591"rel="external"target="_self">#591</a></li>
<li>[<strong>bug</strong>] tabs: fix tab select'n by groupid <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/582"rel="external"target="_self">#582</a></li>
<li>[<strong>bug</strong>] theme: restore compat wit' Cap'n Hugo 0.95.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/580"rel="external"target="_self">#580</a></li>
<li>[<strong>bug</strong>][<strong>change</strong>] theme: improve display o' links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/577"rel="external"target="_self">#577</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="5171-2023-06-22">5.17.1 (2023-06-22)</h2>
<h3id="enhancements-16">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] highlight: make copy t' clipboard appear on hover <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/574"rel="external"target="_self">#574</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5170-2023-06-22">5.17.0 (2023-06-22)</h2>
<h3id="enhancements-17">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] highlight: add configur'ble line breaks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/169"rel="external"target="_self">#169</a></li>
</ul>
<h3id="fixes-17">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: support Cap'n Hugo 0.114.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/573"rel="external"target="_self">#573</a></li>
<li>[<strong>bug</strong>] taxonomy: fix number tags <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/570"rel="external"target="_self">#570</a></li>
<li>[<strong>bug</strong>] mermaid: allow fer YAML frontmatter inside o' graph <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/564"rel="external"target="_self">#564</a></li>
<li>[<strong>bug</strong>] alias: fix redirect URLs 'n case o' empty BaseURL <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/562"rel="external"target="_self">#562</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5160-2023-06-08">5.16.0 (2023-06-08)</h2>
<h3id="enhancements-20">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] tabs: add title an' ay'con opt'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/552"rel="external"target="_self">#552</a></li>
<li>[<strong>feature</strong>] tabs: support color opt'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/550"rel="external"target="_self">#550</a></li>
<li>[<strong>feature</strong>] favicon: add light & dark opt'n fer OS’s preferred color scheme <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/549"rel="external"target="_self">#549</a></li>
</ul>
<h3id="fixes-19">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] ay'con: remove whitespace on start <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/560"rel="external"target="_self">#560</a></li>
<li>[<strong>bug</strong>] shorrrtcodes: avoid superflous margin at start an' end o' rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/558"rel="external"target="_self">#558</a></li>
<li>[<strong>bug</strong>] expand: fix html encod'n o' finish'n rrrambl'n tag <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/557"rel="external"target="_self">#557</a></li>
<li>[<strong>feature</strong>] taxonomy: add support fer category default taxonomy <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/541"rel="external"target="_self">#541</a></li>
</ul>
<h3id="fixes-20">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] attachments: work fer Cap'n Hugo < 0.112 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/546"rel="external"target="_self">#546</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5151-2023-05-25">5.15.1 (2023-05-25)</h2>
<h3id="fixes-21">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] shorrrtcodes: intermediately use random ids instead o' .Ordinal <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/543"rel="external"target="_self">#543</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5150-2023-05-25">5.15.0 (2023-05-25)</h2>
<h3id="enhancements-22">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] tab: new shortcode t' display single tab <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/538"rel="external"target="_self">#538</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] tabs: treat groupid as unique if not set <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/537"rel="external"target="_self">#537</a></li>
<li>[<strong>feature</strong>] notice: make boxes more prominent <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/535"rel="external"target="_self">#535</a></li>
</ul>
<h3id="fixes-22">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] attachments: fix build error since Cap'n Hugo 0.112 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/540"rel="external"target="_self">#540</a></li>
<li>[<strong>bug</strong>] tags: show taxonomy toc fer standard installat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/533"rel="external"target="_self">#533</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5142-2023-05-20">5.14.2 (2023-05-20)</h2>
<h3id="fixes-24">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] tags: translate breadcrumb an' title fer taxonomy <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/532"rel="external"target="_self">#532</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5141-2023-05-20">5.14.1 (2023-05-20)</h2>
<p><em>No changelog fer this release.</em>
</p>
<hr>
<p></p>
<h2id="5140-2023-05-19">5.14.0 (2023-05-19)</h2>
<h3id="enhancements-23">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] tags: improve search index fer tags <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/531"rel="external"target="_self">#531</a></li>
<li>[<strong>feature</strong>] tags: increase readability o' taxonomy planks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/530"rel="external"target="_self">#530</a></li>
<li>[<strong>feature</strong>] nav: make breadcrumb separator configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/529"rel="external"target="_self">#529</a></li>
<li>[<strong>feature</strong>] i18n: add translat'n fer default taxonomies <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/528"rel="external"target="_self">#528</a></li>
<li>[<strong>feature</strong>] theme: set appropriate defaults fer all theme specific params <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/516"rel="external"target="_self">#516</a></li>
<li>[<strong>bug</strong>] shortcode: make .context always a plank <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/527"rel="external"target="_self">#527</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="5132-2023-05-17">5.13.2 (2023-05-17)</h2>
<h3id="fixes-26">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] print: en'ble print fer planks wit' _build opt'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/522"rel="external"target="_self">#522</a>
<li>[<strong>bug</strong>] variant: avoid leak'n shadows 'n neon print style <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/524"rel="external"target="_self">#524</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="5126-2023-05-04">5.12.6 (2023-05-04)</h2>
<h3id="enhancements-25">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: better HTML titles an' breadcrumbs fer search an' tag planks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/521"rel="external"target="_self">#521</a></li>
</ul>
<h3id="fixes-29">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] menu: avoid hid'n o' expander on hover when active item has children <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/520"rel="external"target="_self">#520</a></li>
<li>[<strong>bug</strong>] menu: showVisitedLinks not work'n fer some theme variants <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/518"rel="external"target="_self">#518</a></li>
<li>[<strong>bug</strong>] theme: fix resource URLs fer 404 plank on subdirectories <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/515"rel="external"target="_self">#515</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5125-2023-03-28">5.12.5 (2023-03-28)</h2>
<h3id="fixes-30">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] expand: not properly exanded when used 'n bullet point list <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/508"rel="external"target="_self">#508</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5124-2023-03-24">5.12.4 (2023-03-24)</h2>
<h3id="fixes-31">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: disableExplicitIndexURLs param be not work'n as expected <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/505"rel="external"target="_self">#505</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5123-2023-03-14">5.12.3 (2023-03-14)</h2>
<h3id="fixes-32">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] attachments: fix links if only one language be present <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/503"rel="external"target="_self">#503</a></li>
<li>[<strong>bug</strong>] shorrrtcodes: allow markdown fer title an' rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/502"rel="external"target="_self">#502</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5122-2023-03-03">5.12.2 (2023-03-03)</h2>
<h3id="fixes-33">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] menu: fix state fer alwaysopen=false + collapsibleMenu=false <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/498"rel="external"target="_self">#498</a>
<li>[<strong>bug</strong>] generator: fix sett'n o' colors <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/494"rel="external"target="_self">#494</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5120-2023-02-24">5.12.0 (2023-02-24)</h2>
<h3id="enhancements-27">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] frontmatter: support VSCode Front Matter extension <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/481"rel="external"target="_self">#481</a></li>
<li>[<strong>feature</strong>] theme: make expand an' image ids st'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/477"rel="external"target="_self">#477</a></li>
<li>[<strong>feature</strong>] variant: set scrollbar color t' dark fer dark variants <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/471"rel="external"target="_self">#471</a></li>
<li>[<strong>feature</strong>] i18n: add full RTL support <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/470"rel="external"target="_self">#470</a></li>
<li>[<strong>feature</strong>] piratify: fix some quirks, arrr <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/469"rel="external"target="_self">#469</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: optimizat'n fer huge screen sizes <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/466"rel="external"target="_self">#466</a></li>
</ul>
<h3id="fixes-35">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] i18n: write code ltr even fer rtl languages <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/492"rel="external"target="_self">#492</a></li>
<li>[<strong>bug</strong>] anchor: fix link 'n FF when served from file system <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/482"rel="external"target="_self">#482</a></li>
<li>[<strong>bug</strong>] nav: restore scroll posit'n on browser back <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/476"rel="external"target="_self">#476</a></li>
<li>[<strong>bug</strong>] variant: avoid style leak fer auto style <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/473"rel="external"target="_self">#473</a></li>
<li>[<strong>bug</strong>] tabs: nested tabs rrrambl'n be not displayed <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/468"rel="external"target="_self">#468</a>
</li>
</ul>
<hr>
<p></p>
<h2id="5111-2023-02-06">5.11.1 (2023-02-06)</h2>
<h3id="fixes-37">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] variant: include miss'n <code>theme-auto.css</code> 'n distribut'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/467"rel="external"target="_self">#467</a>
<li>[<strong>feature</strong>][<strong>change</strong>] variant: add support fer <code>prefers-color-scheme</code><ahref="https://github.com/McShelby/hugo-theme-relearn/issues/445"rel="external"target="_self">#445</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] expand: refactor fer a11y <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/339"rel="external"target="_self">#339</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] mermaid: make zoom configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/144"rel="external"target="_self">#144</a></li>
</ul>
<h3id="fixes-38">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] swagger: avoid errors when us'n invalid rapi-doc fragment ids <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/465"rel="external"target="_self">#465</a></li>
<li>[<strong>bug</strong>] search: fix oddities 'n keyboard handl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/463"rel="external"target="_self">#463</a></li>
<li>[<strong>bug</strong>] badge: fix text color fer IE11 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/462"rel="external"target="_self">#462</a></li>
<li>[<strong>bug</strong>] mermaid: rerender graph if search term be present an' variant be switched <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/460"rel="external"target="_self">#460</a></li>
<li>[<strong>bug</strong>] tags: show tag on planks when tag has space <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/459"rel="external"target="_self">#459</a></li>
<li>[<strong>bug</strong>] edit: remove do'ble slash on root plank link <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/450"rel="external"target="_self">#450</a></li>
</ul>
<h3id="maintenance-7">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] build: add mov'n version tags <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/453"rel="external"target="_self">#453</a></li>
<li>[<strong>task</strong>] build: check fer release notes before release <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/448"rel="external"target="_self">#448</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="5102-2023-01-25">5.10.2 (2023-01-25)</h2>
<h3id="fixes-39">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] nav: fix breadcrumb fer huge installat'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/446"rel="external"target="_self">#446</a>
<li>[<strong>feature</strong>] shorrrtcodes: support fer accent color <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/440"rel="external"target="_self">#440</a></li>
<li>[<strong>feature</strong>] shorrrtcodes: add color parameter whar' applic'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/438"rel="external"target="_self">#438</a></li>
<li>[<strong>feature</strong>] theme: announce translat'ns as alternate links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/422"rel="external"target="_self">#422</a></li>
</ul>
<h3id="fixes-41">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] nav: fix breadcrumbs fer deeply nested sections <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/442"rel="external"target="_self">#442</a></li>
<li>[<strong>bug</strong>] theme: improve whitespac'n 'n tables <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/441"rel="external"target="_self">#441</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="594-2023-01-23">5.9.4 (2023-01-23)</h2>
<h3id="fixes-42">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] variant: fix search ay'con an' text color <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/437"rel="external"target="_self">#437</a>
</li>
</ul>
<hr>
<p></p>
<h2id="593-2023-01-22">5.9.3 (2023-01-22)</h2>
<h3id="fixes-43">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] nav: fix left/right navigat'n fer horizontal scroll'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/435"rel="external"target="_self">#435</a></li>
<li>[<strong>bug</strong>][<strong>break'n</strong>] theme: allow planks on top level <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/434"rel="external"target="_self">#434</a></li>
</ul>
<h3id="maintenance-8">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] build: switch t' wildcard version o' act'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/428"rel="external"target="_self">#428</a>
</li>
</ul>
<hr>
<p></p>
<h2id="592-2022-12-30">5.9.2 (2022-12-30)</h2>
<h3id="fixes-44">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] search: apply dependency scripts fer Hindi an' Japanese <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/427"rel="external"target="_self">#427</a>
</li>
</ul>
<hr>
<p></p>
<h2id="591-2022-12-23">5.9.1 (2022-12-23)</h2>
<h3id="enhancements-30">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: make external link target configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/426"rel="external"target="_self">#426</a>
</li>
</ul>
<hr>
<p></p>
<h2id="590-2022-12-23">5.9.0 (2022-12-23)</h2>
<h3id="enhancements-31">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: open external links 'n separate tab <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/419"rel="external"target="_self">#419</a></li>
<li>[<strong>feature</strong>] theme: make it a Cap'n Hugo module <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/417"rel="external"target="_self">#417</a></li>
</ul>
<h3id="fixes-45">Fixes</h3>
<ul>
<li>[<strong>bug</strong>][<strong>change</strong>] attachments: fix incorrect links fer defaultContentLanguageInSubdir=true <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/425"rel="external"target="_self">#425</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="581-2022-12-11">5.8.1 (2022-12-11)</h2>
<h3id="fixes-46">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix alias fer home plank if defaultContentLanguageInSubdir=true <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/414"rel="external"target="_self">#414</a>
</li>
</ul>
<hr>
<p></p>
<h2id="580-2022-12-08">5.8.0 (2022-12-08)</h2>
<h3id="enhancements-32">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] ay'con: add new shortcode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/412"rel="external"target="_self">#412</a></li>
<li>[<strong>feature</strong>] badge: add new shortcode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/410"rel="external"target="_self">#410</a></li>
<li>[<strong>feature</strong>] theme: add accent color <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/409"rel="external"target="_self">#409</a></li>
</ul>
<h3id="fixes-47">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix spac'n fer tag flyout 'n FF <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/413"rel="external"target="_self">#413</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="570-2022-11-29">5.7.0 (2022-11-29)</h2>
<h3id="enhancements-33">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] button: refactor fer a11y <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/372"rel="external"target="_self">#372</a></li>
</ul>
<h3id="fixes-48">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] search: don’t freeze browser on long search terms <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/408"rel="external"target="_self">#408</a></li>
<li>[<strong>bug</strong>] search: fix searchbox placeholder color 'n FF an' IE <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/405"rel="external"target="_self">#405</a></li>
<li>[<strong>bug</strong>][<strong>change</strong>] i18n: rename Korean translat'n from country t' lang code <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/404"rel="external"target="_self">#404</a></li>
</ul>
<h3id="maintenance-9">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] search: update lunr languages t' 1.10.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/403"rel="external"target="_self">#403</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="566-2022-11-23">5.6.6 (2022-11-23)</h2>
<h3id="enhancements-34">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] search: make build an' js forgiv'n against config errors <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/400"rel="external"target="_self">#400</a></li>
</ul>
<h3id="fixes-49">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] variant: minor color adjustments <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/402"rel="external"target="_self">#402</a></li>
<li>[<strong>bug</strong>] variant: fix generator fer use o' neon <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/401"rel="external"target="_self">#401</a>
</li>
</ul>
<hr>
<p></p>
<h2id="565-2022-11-19">5.6.5 (2022-11-19)</h2>
<h3id="fixes-50">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] menu: relax usage o' background color <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/399"rel="external"target="_self">#399</a>
</li>
</ul>
<hr>
<p></p>
<h2id="564-2022-11-19">5.6.4 (2022-11-19)</h2>
<h3id="fixes-51">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: make alias planks us'ble by file:// protocol <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/398"rel="external"target="_self">#398</a>
</li>
</ul>
<hr>
<p></p>
<h2id="563-2022-11-19">5.6.3 (2022-11-19)</h2>
<h3id="fixes-52">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: be compat'ble wit' Cap'n Hugo >= 0.95.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/397"rel="external"target="_self">#397</a>
</li>
</ul>
<hr>
<p></p>
<h2id="562-2022-11-19">5.6.2 (2022-11-19)</h2>
<h3id="fixes-53">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: build breaks sites without “output” section 'n config <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/396"rel="external"target="_self">#396</a>
<li>[<strong>feature</strong>] theme: make creat'n o' generator meta tag configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/383"rel="external"target="_self">#383</a></li>
<li>[<strong>bug</strong>] theme: fix build errors when referenc'n SVGs 'n markdown <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/393"rel="external"target="_self">#393</a></li>
<li>[<strong>bug</strong>] variant: avoid neon t' leak into IE11 fallback <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/392"rel="external"target="_self">#392</a></li>
<li>[<strong>bug</strong>] theme: fix urls fer file:// protocol 'n sitemap <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/385"rel="external"target="_self">#385</a></li>
<li>[<strong>bug</strong>] theme: add id t' h1 elements <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/384"rel="external"target="_self">#384</a></li>
<li>[<strong>bug</strong>] rss: fix display o' hidden subpages <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/382"rel="external"target="_self">#382</a></li>
<li>[<strong>bug</strong>] nav: fix key navigat'n when press'n wrong modifiers <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/379"rel="external"target="_self">#379</a></li>
</ul>
<h3id="maintenance-10">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] mermaid: update t' version 9.2.2 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/391"rel="external"target="_self">#391</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="553-2022-11-10">5.5.3 (2022-11-10)</h2>
<h3id="fixes-56">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] tags: fix non-latin tag display on planks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/378"rel="external"target="_self">#378</a>
</li>
</ul>
<hr>
<p></p>
<h2id="552-2022-11-08">5.5.2 (2022-11-08)</h2>
<h3id="fixes-57">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix typo 'n 404.html <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/376"rel="external"target="_self">#376</a></li>
<li>[<strong>bug</strong>] theme: allow menu items an' children t' be served by file:// protocol <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/375"rel="external"target="_self">#375</a>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: opt'mize plank board fer images <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/304"rel="external"target="_self">#304</a></li>
</ul>
<h3id="fixes-59">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix context 'n render hooks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/373"rel="external"target="_self">#373</a></li>
<li>[<strong>bug</strong>] print: make canonical URL absolute <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/371"rel="external"target="_self">#371</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="543-2022-11-05">5.4.3 (2022-11-05)</h2>
<h3id="enhancements-37">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] history: refactor fer a11y <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/341"rel="external"target="_self">#341</a></li>
</ul>
<h3id="fixes-60">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix multilang links when ship served from subdirectory <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/370"rel="external"target="_self">#370</a>
</li>
</ul>
<hr>
<p></p>
<h2id="542-2022-11-05">5.4.2 (2022-11-05)</h2>
<h3id="maintenance-11">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] build: change set-output t' env vars <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/348"rel="external"target="_self">#348</a>
<li>[<strong>feature</strong>] mermaid: allow pass'n o' parameters wit' codefence rules <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/360"rel="external"target="_self">#360</a></li>
<li>[<strong>feature</strong>] i18n: support RTL <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/357"rel="external"target="_self">#357</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] button: add opt'n fer target <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/351"rel="external"target="_self">#351</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: allow t' be served by file:// protocol <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/349"rel="external"target="_self">#349</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="533-2022-10-09">5.3.3 (2022-10-09)</h2>
<h3id="fixes-62">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] archetypes: fix frontmatter on home.md template <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/346"rel="external"target="_self">#346</a>
<li>[<strong>bug</strong>] children: remove unused <code>plank</code> parameter from docs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/336"rel="external"target="_self">#336</a></li>
<li>[<strong>bug</strong>] print: remove menu placeholder 'n Firefox <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/335"rel="external"target="_self">#335</a></li>
<li>[<strong>task</strong>] task: bump Cap'n Hugo minimum requirement t' 0.95 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/319"rel="external"target="_self">#319</a>
</li>
</ul>
<hr>
<p></p>
<h2id="520-2022-08-03">5.2.0 (2022-08-03)</h2>
<h3id="enhancements-42">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] menu: expand collapsed menus if search term be found 'n submenus <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/312"rel="external"target="_self">#312</a></li>
</ul>
<h3id="fixes-69">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] print: switch mermaid an' swagger style before print <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/316"rel="external"target="_self">#316</a></li>
<li>[<strong>bug</strong>] theme: fix chapter margins on big screens <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/315"rel="external"target="_self">#315</a>
<li>[<strong>bug</strong>] mermaid: header be show'n up 'n FF <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/311"rel="external"target="_self">#311</a>
</li>
</ul>
<hr>
<p></p>
<h2id="511-2022-07-15">5.1.1 (2022-07-15)</h2>
<h3id="fixes-71">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] tags: don’t count tags if plank be hidden <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/310"rel="external"target="_self">#310</a>
</li>
</ul>
<hr>
<p></p>
<h2id="510-2022-07-15">5.1.0 (2022-07-15)</h2>
<h3id="enhancements-43">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] print: make print url deterministic <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/309"rel="external"target="_self">#309</a></li>
<li>[<strong>feature</strong>] theme: allow overrid'n partials fer output formats <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/308"rel="external"target="_self">#308</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="503-2022-07-07">5.0.3 (2022-07-07)</h2>
<h3id="fixes-72">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] ie11: no styles after rework o' archetypes <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/306"rel="external"target="_self">#306</a>
</li>
</ul>
<hr>
<p></p>
<h2id="502-2022-07-07">5.0.2 (2022-07-07)</h2>
<h3id="fixes-73">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: board CSS if JS be disabled <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/305"rel="external"target="_self">#305</a>
</li>
</ul>
<hr>
<p></p>
<h2id="501-2022-07-07">5.0.1 (2022-07-07)</h2>
<h3id="enhancements-44">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>break'n</strong>] theme: opt'mize load'n o' js an' css <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/303"rel="external"target="_self">#303</a>
<li>[<strong>feature</strong>] history: don’t reload plank when history gets cleared <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/299"rel="external"target="_self">#299</a></li>
<li>[<strong>feature</strong>] menu: replace expander by fontawesome chevrons <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/296"rel="external"target="_self">#296</a></li>
<li>[<strong>feature</strong>] button: allow fer empty href <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/288"rel="external"target="_self">#288</a></li>
<li>[<strong>feature</strong>] i18n: make Simplified Chinese th' standard language fer th' <code>zn</code> code <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/287"rel="external"target="_self">#287</a></li>
<li>[<strong>feature</strong>] clipboard: move head styles t' stylesheet <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/286"rel="external"target="_self">#286</a></li>
<li>[<strong>feature</strong>] theme: allow fer plank head'n modificat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/139"rel="external"target="_self">#139</a></li>
</ul>
<h3id="fixes-74">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] favicon: fix URL if ship resides 'n subdirectory <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/302"rel="external"target="_self">#302</a></li>
<li>[<strong>bug</strong>] code: show copy-to-clipboard marker fer blocklevel code <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/298"rel="external"target="_self">#298</a></li>
<li>[<strong>bug</strong>] menu: make active expander vis'ble on hover <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/297"rel="external"target="_self">#297</a></li>
<li>[<strong>bug</strong>] print: add miss'n plank break after index or section <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/292"rel="external"target="_self">#292</a></li>
<li>[<strong>bug</strong>] theme: use more space on wide screens <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/291"rel="external"target="_self">#291</a></li>
<li>[<strong>bug</strong>] theme: fix size o' chapter head'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/289"rel="external"target="_self">#289</a></li>
<ahref="/hugo-theme-relearn/pir/introduction/releasenotes/4/index.html">★ What's new in this version ★</a>
<hr>
<p></p>
<p></p>
<h2id="425-2022-06-23">4.2.5 (2022-06-23)</h2>
<h3id="fixes">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] swagger: javascript code does not board 'n documentat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/285"rel="external"target="_self">#285</a></li>
<li>[<strong>bug</strong>] children: descript'ns not work'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/284"rel="external"target="_self">#284</a></li>
<li>[<strong>bug</strong>] print: fix empty plank fer shortcut links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/283"rel="external"target="_self">#283</a>
</li>
</ul>
<hr>
<p></p>
<h2id="424-2022-06-23">4.2.4 (2022-06-23)</h2>
<h3id="fixes-1">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix url fer logo an' home button <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/282"rel="external"target="_self">#282</a>
</li>
</ul>
<hr>
<p></p>
<h2id="423-2022-06-23">4.2.3 (2022-06-23)</h2>
<h3id="fixes-2">Fixes</h3>
<ul>
<li>[<strong>bug</strong>][<strong>break'n</strong>] include: second parameter be ignored <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/281"rel="external"target="_self">#281</a>
</li>
</ul>
<hr>
<p></p>
<h2id="422-2022-06-23">4.2.2 (2022-06-23)</h2>
<p><em>No changelog fer this release.</em>
</p>
<hr>
<p></p>
<h2id="421-2022-06-23">4.2.1 (2022-06-23)</h2>
<p><em>No changelog fer this release.</em>
</p>
<hr>
<p></p>
<h2id="420-2022-06-23">4.2.0 (2022-06-23)</h2>
<h3id="enhancements">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] tabs: don’t change tab select'n if panel does not contain item <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/279"rel="external"target="_self">#279</a></li>
<li>[<strong>bug</strong>] search: fix console message fer miss'n lunr translat'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/278"rel="external"target="_self">#278</a></li>
<li>[<strong>bug</strong>] tabs: fix wrapp'n when hav'n many tabs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/272"rel="external"target="_self">#272</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="411-2022-06-18">4.1.1 (2022-06-18)</h2>
<h3id="fixes-4">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] notice: fix layout when rrrambl'n starts wit' head'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/275"rel="external"target="_self">#275</a>
</li>
</ul>
<hr>
<p></p>
<h2id="410-2022-06-12">4.1.0 (2022-06-12)</h2>
<h3id="enhancements-1">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] i18n: support multilang rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/271"rel="external"target="_self">#271</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="405-2022-06-12">4.0.5 (2022-06-12)</h2>
<h3id="fixes-5">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] i18n: Vietnamese language wit' wrong lang code <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/270"rel="external"target="_self">#270</a></li>
<li>[<strong>bug</strong>] i18n: fix search fer non western languages <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/269"rel="external"target="_self">#269</a>
</li>
</ul>
<hr>
<p></p>
<h2id="404-2022-06-07">4.0.4 (2022-06-07)</h2>
<h3id="enhancements-2">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: improve keyboard navigat'n fer scroll'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/268"rel="external"target="_self">#268</a></li>
</ul>
<h3id="fixes-6">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] swagger: adjust font-size fer method buttons <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/267"rel="external"target="_self">#267</a></li>
<li>[<strong>bug</strong>] menu: hide expander when only hidden subpages <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/264"rel="external"target="_self">#264</a></li>
<li>[<strong>bug</strong>] theme: make compat'ble wit' Cap'n Hugo 0.100.0 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/263"rel="external"target="_self">#263</a></li>
<li>[<strong>bug</strong>] theme: let browser scroll plank on CTRL+f <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/242"rel="external"target="_self">#242</a>
</li>
</ul>
<hr>
<p></p>
<h2id="401-2022-06-05">4.0.1 (2022-06-05)</h2>
<p><em>No changelog fer this release.</em>
</p>
<hr>
<p></p>
<h2id="400-2022-06-05">4.0.0 (2022-06-05)</h2>
<h3id="enhancements-4">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] shorrrtcodes: add named parameter if miss'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/260"rel="external"target="_self">#260</a></li>
<li>[<strong>feature</strong>][<strong>break'n</strong>] theme: remove –MAIN-ANCHOR-color from stylesheet <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/256"rel="external"target="_self">#256</a></li>
<li>[<strong>feature</strong>] i18n: add Italian translat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/254"rel="external"target="_self">#254</a></li>
<li>[<strong>feature</strong>] attachments: support fer brand colors <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/252"rel="external"target="_self">#252</a></li>
<li>[<strong>feature</strong>] notice: support fer brand colors <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/251"rel="external"target="_self">#251</a></li>
<li>[<strong>feature</strong>] theme: use proper file extension fer page-meta.go <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/246"rel="external"target="_self">#246</a></li>
<li>[<strong>feature</strong>] variant: add support fer brand color variables <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/239"rel="external"target="_self">#239</a></li>
<li>[<strong>bug</strong>] shorrrtcodes: accept boolean parameters if given as str'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/261"rel="external"target="_self">#261</a></li>
<li>[<strong>bug</strong>] print: show Merrrmaid if requested 'n frontmatter <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/255"rel="external"target="_self">#255</a></li>
<li>[<strong>bug</strong>] theme: fix display o' tooltip fer head'n anchor <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/241"rel="external"target="_self">#241</a>
</li>
</ul>
<p></p>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-3">Version 3</h1>
<ahref="/hugo-theme-relearn/pir/introduction/releasenotes/3/index.html">★ What's new in this version ★</a>
<li>[<strong>feature</strong>] i18n: add Traditional Chinese translat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/233"rel="external"target="_self">#233</a></li>
<li>[<strong>feature</strong>] menu: expand/collapse menu items without navigat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/231"rel="external"target="_self">#231</a></li>
<li>[<strong>feature</strong>][<strong>break'n</strong>] theme: apply user supplied rrrambl'n footer below rrrambl'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/229"rel="external"target="_self">#229</a></li>
</ul>
<h3id="fixes-1">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: scroll t' head'n on initial board <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/232"rel="external"target="_self">#232</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="330-2022-03-28">3.3.0 (2022-03-28)</h2>
<h3id="enhancements-1">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: add CSS font variables <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/227"rel="external"target="_self">#227</a></li>
<li>[<strong>feature</strong>] swagger: add support fer oas/swagger documentat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/226"rel="external"target="_self">#226</a></li>
</ul>
<h3id="fixes-2">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] variant: make variant switch work on slow networks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/228"rel="external"target="_self">#228</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="321-2022-03-25">3.2.1 (2022-03-25)</h2>
<h3id="fixes-3">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] print: fix minor inconsistencies <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/225"rel="external"target="_self">#225</a></li>
<li>[<strong>bug</strong>] print: show more than just th' title plank <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/224"rel="external"target="_self">#224</a></li>
<li>[<strong>bug</strong>] theme: align rrrambl'n scrollbar t' th' right on big screens <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/223"rel="external"target="_self">#223</a>
</li>
</ul>
<hr>
<p></p>
<h2id="320-2022-03-19">3.2.0 (2022-03-19)</h2>
<h3id="enhancements-2">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] mermaid: support differ'n themes fer color variant switch <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/219"rel="external"target="_self">#219</a></li>
<li>[<strong>feature</strong>] mermaid: board javascript on demand <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/218"rel="external"target="_self">#218</a></li>
<li>[<strong>bug</strong>] theme: make storage o' multiple Cap'n Hugo sites on same server distinct <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/214"rel="external"target="_self">#214</a></li>
<li>[<strong>bug</strong>] variant: switch breadcrumb color 'n Chrome <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/213"rel="external"target="_self">#213</a></li>
<li>[<strong>bug</strong>] mobile: improve behavior o' sidebar menu <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/210"rel="external"target="_self">#210</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="304-2022-02-24">3.0.4 (2022-02-24)</h2>
<h3id="enhancements-5">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: improve font load'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/201"rel="external"target="_self">#201</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] variant: fix inconsistent color vari'ble nam'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/200"rel="external"target="_self">#200</a></li>
</ul>
<h3id="fixes-5">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] variant: fix occasional fail when resett'n generator <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/208"rel="external"target="_self">#208</a></li>
<li>[<strong>bug</strong>] docs: don’t move header on logo hover 'n IE11 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/207"rel="external"target="_self">#207</a></li>
<li>[<strong>bug</strong>] variant: avoid flash o' menu header when non default variant be active <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/206"rel="external"target="_self">#206</a></li>
<li>[<strong>bug</strong>] theme: fix wrong HTML clos'n tag order 'n chapters <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/205"rel="external"target="_self">#205</a></li>
<li>[<strong>bug</strong>] theme: adjust breadcrumb an' title fer empty home plank titles <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/202"rel="external"target="_self">#202</a>
</li>
</ul>
<hr>
<p></p>
<h2id="303-2022-02-23">3.0.3 (2022-02-23)</h2>
<h3id="enhancements-6">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] tags: show tag count 'n taxonomy list <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/195"rel="external"target="_self">#195</a></li>
</ul>
<h3id="fixes-6">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: remove Cap'n Hugo build warning if plank be not file based <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/197"rel="external"target="_self">#197</a></li>
<li>[<strong>feature</strong>] tags: sort by name <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/193"rel="external"target="_self">#193</a>
</li>
</ul>
<hr>
<p></p>
<h2id="301-2022-02-23">3.0.1 (2022-02-23)</h2>
<h3id="enhancements-8">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] children: set containerstyle automatically accord'n t' style <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/192"rel="external"target="_self">#192</a></li>
</ul>
<h3id="fixes-7">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: revert fontawsome t' version 5 fer IE11 compat <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/191"rel="external"target="_self">#191</a>
</li>
</ul>
<hr>
<p></p>
<h2id="300-2022-02-22">3.0.0 (2022-02-22)</h2>
<h3id="enhancements-9">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] variant: build a variant generator <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/188"rel="external"target="_self">#188</a></li>
<li>[<strong>feature</strong>] nav: only show toc if th' plank has head'ns <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/182"rel="external"target="_self">#182</a></li>
<li>[<strong>feature</strong>] theme: support fer dark mode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/175"rel="external"target="_self">#175</a></li>
<li>[<strong>feature</strong>] docs: use light rules highlight'n theme <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/174"rel="external"target="_self">#174</a></li>
<li>[<strong>bug</strong>] search: remove additional X 'n filled out search box 'n IE11 <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/190"rel="external"target="_self">#190</a></li>
<li>[<strong>bug</strong>] print: hide sidebar on Mac <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/183"rel="external"target="_self">#183</a></li>
<li>[<strong>bug</strong>][<strong>change</strong>] search: fix color change fer ay'cons on hover <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/176"rel="external"target="_self">#176</a>
</li>
</ul>
<p></p>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-2">Version 2</h1>
<ahref="/hugo-theme-relearn/pir/introduction/releasenotes/2/index.html">★ What's new in this version ★</a>
<li>[<strong>bug</strong>] menu: let arrow navigat'n respect ordersectionsby configurat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/170"rel="external"target="_self">#170</a>
</li>
</ul>
<hr>
<p></p>
<h2id="294-2022-02-06">2.9.4 (2022-02-06)</h2>
<h3id="fixes-2">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] exampleSite: fix links 'n official documentat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/168"rel="external"target="_self">#168</a>
</li>
</ul>
<hr>
<p></p>
<h2id="293-2022-02-06">2.9.3 (2022-02-06)</h2>
<h3id="fixes-3">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] menu: invalid URL when th' shortcut be an internal link <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/163"rel="external"target="_self">#163</a>
</li>
</ul>
<hr>
<p></p>
<h2id="292-2021-11-26">2.9.2 (2021-11-26)</h2>
<h3id="enhancements">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] theme: add theme version info t' head <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/158"rel="external"target="_self">#158</a></li>
</ul>
<h3id="fixes-4">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix select'n o' *.ico files as favicons <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/160"rel="external"target="_self">#160</a>
</li>
</ul>
<hr>
<p></p>
<h2id="291-2021-11-22">2.9.1 (2021-11-22)</h2>
<h3id="fixes-5">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] menu: fix significantly low performance fer collect'n o' meta info <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/157"rel="external"target="_self">#157</a>
<li>[<strong>bug</strong>] search: make dropdown stick t' search field when scroll'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/155"rel="external"target="_self">#155</a></li>
<li>[<strong>bug</strong>] menu: align long text properly <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/154"rel="external"target="_self">#154</a></li>
<li>[<strong>bug</strong>] copyToClipBoard: add miss'n right border fer inline code if <code>disableInlineCopyToClipBoard=true</code><ahref="https://github.com/McShelby/hugo-theme-relearn/issues/153"rel="external"target="_self">#153</a></li>
<li>[<strong>bug</strong>] menu: show hidden sibl'n planks reliably <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/152"rel="external"target="_self">#152</a></li>
<li>[<strong>bug</strong>] menu: br'n active item 'n sight fer large menus <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/149"rel="external"target="_self">#149</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="283-2021-11-09">2.8.3 (2021-11-09)</h2>
<h3id="fixes-7">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] mermaid: let zoom reset t' initial size <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/145"rel="external"target="_self">#145</a></li>
<li>[<strong>bug</strong>] mermaid: remove whitespace from big graphs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/143"rel="external"target="_self">#143</a>
</li>
</ul>
<hr>
<p></p>
<h2id="282-2021-11-08">2.8.2 (2021-11-08)</h2>
<h3id="fixes-8">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] mermaid: always board javascript t' avoid break if code fences be used <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/142"rel="external"target="_self">#142</a>
</li>
</ul>
<hr>
<p></p>
<h2id="281-2021-11-04">2.8.1 (2021-11-04)</h2>
<h3id="fixes-9">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] search: don’t break JS 'n multilang setup if search be disabled <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/140"rel="external"target="_self">#140</a>
</li>
</ul>
<hr>
<p></p>
<h2id="280-2021-11-03">2.8.0 (2021-11-03)</h2>
<h3id="enhancements-1">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] toc: make disableTOC globally avail'ble via config.toml <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/133"rel="external"target="_self">#133</a></li>
<li>[<strong>feature</strong>] mermaid: only board javascript if necessary <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/95"rel="external"target="_self">#95</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: switch font <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/83"rel="external"target="_self">#83</a></li>
<li>[<strong>feature</strong>] theme: make favicon configur'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/2"rel="external"target="_self">#2</a></li>
</ul>
<h3id="fixes-10">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] mermaid: assert that window.mermaid be actually mermaid <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/136"rel="external"target="_self">#136</a></li>
<li>[<strong>bug</strong>] menu: remove usage o' Hugo’s UniqueID <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/131"rel="external"target="_self">#131</a></li>
<li>[<strong>bug</strong>] theme: reduce margin fer children shortcode <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/130"rel="external"target="_self">#130</a></li>
<li>[<strong>bug</strong>] theme: left-align h3 'n chapters <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/129"rel="external"target="_self">#129</a></li>
<li>[<strong>bug</strong>] theme: align copy link t' clipboard <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/128"rel="external"target="_self">#128</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="270-2021-10-24">2.7.0 (2021-10-24)</h2>
<h3id="enhancements-2">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] notice: support custom titles <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/124"rel="external"target="_self">#124</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="260-2021-10-21">2.6.0 (2021-10-21)</h2>
<h3id="fixes-11">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: generate correct links if theme served from subdirectory <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/120"rel="external"target="_self">#120</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="251-2021-10-12">2.5.1 (2021-10-12)</h2>
<h3id="fixes-12">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] security: fix XSS fer malicious image URLs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/117"rel="external"target="_self">#117</a>
</li>
</ul>
<hr>
<p></p>
<h2id="250-2021-10-08">2.5.0 (2021-10-08)</h2>
<h3id="enhancements-3">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>][<strong>change</strong>] rules highlight: provide default colors fer unknown languages <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/113"rel="external"target="_self">#113</a></li>
</ul>
<h3id="fixes-13">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] security: fix XSS fer malicious URLs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/114"rel="external"target="_self">#114</a></li>
<li>[<strong>bug</strong>] menu: write correct local shortcut links <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/112"rel="external"target="_self">#112</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="241-2021-10-07">2.4.1 (2021-10-07)</h2>
<h3id="fixes-14">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: remove runtime styles from print <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/111"rel="external"target="_self">#111</a>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: simplify stylesheet fer color variants <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/107"rel="external"target="_self">#107</a></li>
<li>[<strong>feature</strong>] theme: announce alternative rrrambl'n 'n header <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/101"rel="external"target="_self">#101</a></li>
<li>[<strong>feature</strong>] menu: add default sett'n fer menu expansion <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/97"rel="external"target="_self">#97</a></li>
<li>[<strong>bug</strong>] include: don’t generate additional HTML if file should be displayed “as is”<ahref="https://github.com/McShelby/hugo-theme-relearn/issues/110"rel="external"target="_self">#110</a></li>
<li>[<strong>bug</strong>] attachments: fix broken links if multilang config be used <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/105"rel="external"target="_self">#105</a></li>
<li>[<strong>bug</strong>] docs: rename history pirate translat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/91"rel="external"target="_self">#91</a>
</li>
</ul>
<hr>
<p></p>
<h2id="231-2021-09-20">2.3.1 (2021-09-20)</h2>
<h3id="fixes-17">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] docs: rename english pirate translat'n t' avoid crash on render'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/90"rel="external"target="_self">#90</a>
</li>
</ul>
<hr>
<p></p>
<h2id="230-2021-09-13">2.3.0 (2021-09-13)</h2>
<h3id="fixes-18">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix usage o' section element <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/88"rel="external"target="_self">#88</a></li>
<li>[<strong>feature</strong>] sitemap: hide hidden planks from sitemap an' SEO index'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/85"rel="external"target="_self">#85</a></li>
</ul>
<h3id="fixes-19">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] theme: fix showVisitedLinks 'n case Cap'n Hugo be configured t' modify relative URLs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/86"rel="external"target="_self">#86</a></li>
</ul>
<h3id="maintenance-2">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] theme: switch from data-vocabulary t' schema <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/84"rel="external"target="_self">#84</a>
</li>
</ul>
<p></p>
<hr>
<p></p>
<p></p>
<h2id="210-2021-09-07">2.1.0 (2021-09-07)</h2>
<h3id="enhancements-6">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] search: open expand if it contains search term <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/80"rel="external"target="_self">#80</a></li>
<li>[<strong>feature</strong>] menu: scroll active item into view <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/79"rel="external"target="_self">#79</a></li>
<li>[<strong>feature</strong>] search: dis'ble search 'n hidden planks <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/76"rel="external"target="_self">#76</a></li>
<li>[<strong>feature</strong>] search: improve readability o' index.json <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/75"rel="external"target="_self">#75</a></li>
<li>[<strong>feature</strong>] menu: show hidden planks if accessed directly <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/60"rel="external"target="_self">#60</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] theme: treat planks without title as hidden <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/59"rel="external"target="_self">#59</a></li>
<li>[<strong>feature</strong>] search: show search results if field gains focus <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/58"rel="external"target="_self">#58</a></li>
<li>[<strong>feature</strong>] theme: add partial templates fer pre/post menu entries <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/56"rel="external"target="_self">#56</a></li>
<li>[<strong>feature</strong>] theme: make chapter archetype more read'ble <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/55"rel="external"target="_self">#55</a></li>
<li>[<strong>feature</strong>] children: add parameter fer container style <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/53"rel="external"target="_self">#53</a></li>
<li>[<strong>feature</strong>] theme: make rrrambl'n a template <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/50"rel="external"target="_self">#50</a></li>
<li>[<strong>feature</strong>] menu: control menu expansion wit' alwaysopen parameter <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/49"rel="external"target="_self">#49</a></li>
<li>[<strong>feature</strong>] include: new shortcode t' include other files <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/43"rel="external"target="_self">#43</a></li>
<li>[<strong>feature</strong>][<strong>change</strong>] code highlighter: switch t' standard hugo highlighter <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/32"rel="external"target="_self">#32</a></li>
<li>[<strong>bug</strong>] theme: remove superfluous singular taxonomy from taxonomy title <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/46"rel="external"target="_self">#46</a></li>
<li>[<strong>bug</strong>][<strong>change</strong>] theme: miss'n –MENU-HOME-LINK-HOVER-color 'n documentat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/45"rel="external"target="_self">#45</a></li>
<li>[<strong>bug</strong>] theme: fix home link when base URL has some path <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/44"rel="external"target="_self">#44</a></li>
</ul>
<h3id="maintenance-3">Maintenance</h3>
<ul>
<li>[<strong>task</strong>] docs: include changelog 'n exampleSite <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/33"rel="external"target="_self">#33</a>
</li>
</ul>
<p></p>
<footerclass="footline">
</footer>
</article>
<articleclass="default">
<headerclass="headline">
</header>
<h1id="version-1">Version 1</h1>
<ahref="/hugo-theme-relearn/pir/introduction/releasenotes/1/index.html">★ What's new in this version ★</a>
<li>[<strong>feature</strong>] expand: add opt'n t' open on plank board <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/25"rel="external"target="_self">#25</a></li>
<li>[<strong>feature</strong>] notice: make restyl'n o' notice boxes more robust <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/20"rel="external"target="_self">#20</a></li>
<li>[<strong>feature</strong>] notice: align box colors t' common standards <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/18"rel="external"target="_self">#18</a></li>
<li>[<strong>feature</strong>] notice: use distinct ay'cons fer notice box type <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/17"rel="external"target="_self">#17</a></li>
</ul>
<h3id="fixes">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] attachments: support i18n fer attachment size <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/21"rel="external"target="_self">#21</a></li>
<li>[<strong>bug</strong>] notice: support i18n fer box labels <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/16"rel="external"target="_self">#16</a></li>
<li>[<strong>bug</strong>] notice: support multiple blocks 'n one box <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/15"rel="external"target="_self">#15</a></li>
<li>[<strong>task</strong>] theme: prepare fer new hugo theme registrat'n <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/13"rel="external"target="_self">#13</a>
</li>
</ul>
<hr>
<p></p>
<h2id="110-2021-07-02">1.1.0 (2021-07-02)</h2>
<h3id="enhancements-1">Enhancements</h3>
<ul>
<li>[<strong>feature</strong>] mermaid: expose opt'ns 'n config.toml <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/4"rel="external"target="_self">#4</a></li>
</ul>
<h3id="fixes-1">Fixes</h3>
<ul>
<li>[<strong>bug</strong>] mermaid: config opt'n fer CDN url not used <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/12"rel="external"target="_self">#12</a></li>
<li>[<strong>bug</strong>] mermaid: only highlight text 'n HTML elements <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/10"rel="external"target="_self">#10</a></li>
<li>[<strong>bug</strong>] mermaid: support pan & zoom fer graphs <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/9"rel="external"target="_self">#9</a></li>
<li>[<strong>bug</strong>] mermaid: code fences not always rendered <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/6"rel="external"target="_self">#6</a></li>
<li>[<strong>bug</strong>] mermaid: search term on board may bomb chart <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/5"rel="external"target="_self">#5</a></li>
<li>[<strong>task</strong>] Prepare fer hugo showcase <ahref="https://github.com/McShelby/hugo-theme-relearn/issues/3"rel="external"target="_self">#3</a>