* Fix ToC for room versions pages Like for the cs-module shortcode, use .RenderShortcodes instead of .Content for the rver-fragment shortcode, so the headings are detected by Hugo. Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr> * Change the way "this version" is detected in added-in and changed-in shortcodes Now that we use .RenderShortcodes in the rver-fragment shortcode, we cannot remove the output of these shortcodes dynamically because they are replaced by a temporary placeholder due to Hugo's internals. Instead, since the `this` parameter was only used for room version, we always use the `v` parameter and compare with the version provided in the page's front matter. Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr> * Add changelog Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr> * Add version front matter for v11 Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr> * Update changelogs/room_versions/newsfragments/1884.clarification --------- Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr> Co-authored-by: Travis Ralston <travpc@gmail.com>
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
{{/*
|
|
|
|
This template is used to render a "room version fragment". Fragments are blocks of
|
|
text which describe a portion of the room version specification. They should be
|
|
prefixed with the room version which introduces the fragment, and be reusable for
|
|
two or more versions.
|
|
|
|
The `name` parameter is the file name without extension.
|
|
|
|
The `withVersioning` parameter is optional and defaults to false. When true, any
|
|
mentions of "New in this version" from the `added-in` shortcode are removed prior
|
|
to rendering. This is useful if needing to use a fragment where part of it describes
|
|
new functionality in a given room version but isn't new for subsequent versions.
|
|
|
|
*/}}
|
|
|
|
{{ $name := .Params.name }}
|
|
{{ $withVersioning := .Params.withVersioning }}
|
|
|
|
{{ with .Site.GetPage "rooms/fragments" }}
|
|
{{ with .Resources.GetMatch (printf "%s%s" $name ".md") }}
|
|
{{ $content := .RenderShortcodes }}
|
|
{{ if not $withVersioning }}
|
|
{{ $content = (replace $content "[New in this version]" "") }}
|
|
{{ $content = (replace $content "[Changed in this version]" "") }}
|
|
{{ end }}
|
|
{{ $content | safeHTML }}
|
|
{{ end }}
|
|
{{ end }}
|