You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
400 B
HTML
16 lines
400 B
HTML
{{/*
|
|
Renders the "Changed in [version]:" blocks for x-changedInMatrixVersion
|
|
annotations for openapi parameters
|
|
|
|
Takes a single 'changes_dict' parameter, which should be a map of
|
|
version -> details pairs.
|
|
*/ -}}
|
|
{{ range $ver, $details := .changes_dict -}}
|
|
<p>
|
|
<strong>
|
|
Changed in <code>v{{ $ver }}</code>:
|
|
</strong>
|
|
{{ $details | markdownify }}
|
|
</p>
|
|
{{ end -}}
|