mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-03 14:38:37 +01:00
This is actually doing two things:
* creating `{fragments,modules}/index.md` turns the fragments and modules into
page resources, rather than pages in their own right. We have to update the
shortcodes to match.
* adding `headless: true` means that we don't render the pages.
The net effect is that we don't render pages like
https://spec.matrix.org/v1.4/rooms/fragments/v1-auth-rules/ and
https://spec.matrix.org/v1.4/client-server-api/modules/account_data/.
30 lines
1.2 KiB
HTML
30 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 := .Content }}
|
|
{{ if not $withVersioning }}
|
|
{{ $content = (replace $content "[New in this version]" "") }}
|
|
{{ $content = (replace $content "[Changed in this version]" "") }}
|
|
{{ end }}
|
|
{{ $content | safeHTML }}
|
|
{{ end }}
|
|
{{ end }}
|