Version 2.9
See the changelog of this version for a detailed list of changes.2.9.0 (2021-11-19)
Break'n
-
Break'n This release removes th' themes implementat'n o'
ref
/relref
'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.In a standard compliant form ye must not link t' th'
*.md
file but t' its logical name. You’ll see, referenc'n other planks becomes much easier. All three types result 'n th' same reference:Type Non-Standard Standard Branch bundle configuration/reference/_index.md
configuration/reference
Leaf bundle configuration/reference/index.md
configuration/reference
Plank configuration/reference.md
configuration/reference
If you’ve linked from a plank o' one language t' a plank o' another language, conversion be a bit more difficult but Cap'n Hugo got ye covered as well.
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 reconfigure th' error handl'n o' Hugo’s implementat'n.
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
hugo server
after an upgrade an' no errors be written t' th' console.Ye may see errors on th' console after th' update 'n th' form:
ERROR 2021/11/19 22:29:10 [en] REF_NOT_FOUND: Ref "configuration/reference/_index.md": "hugo-theme-relearn\exampleSite\content\_index.en.md:19:22": plank not found
In this case, ye must apply one o' two opt'ns:
-
Start up a text editor wit' regular expression support fer search an' replace. Search fer
(ref\s+"[^"]*?)(?:/_index|/index)?(?:\.md)?(#[^"]*?)?"
an' replace it by$1$2"
'n all*.md
files. This be th' recommended choice. -
Copy th' old implementat'n files
theme/hugo-theme-relearn/layouts/shortcode/ref.html
an'theme/hugo-theme-relearn/layouts/shortcode/relref.html
t' yer own projectslayouts/shortcode/ref.html
an'layouts/shortcode/relref.html
respectively. This be not recommended as yer project will still rely on non-standard behavior afterwards.
-