We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ff7625 commit c251083Copy full SHA for c251083
1 file changed
download/index.md
@@ -13,10 +13,10 @@ Here you will find the packages with the current SimpleSAMLphp versions:
13
Released: {{ site.data.latest.published_at | date: "%Y-%m-%d" }}
14
15
{% assign sha = site.data.latest.body | split: 'SHA256 checksum slim-release: ' | strip_html %}
16
- SHA256 checksum slim-release: {{ sha[1] }}
+ SHA256 checksum slim-release: {{ sha[1] | strip_html }}
17
18
- {% assign shaf = site.data.latest.body | split: 'SHA256 checksum full-release: ' | strip_html | truncate: 64 %}
19
- SHA256 checksum full-release: {{ shaf[1] }}
+ {% assign shaf = site.data.latest.body | split: 'SHA256 checksum full-release: ' %}
+ SHA256 checksum full-release: {{ shaf[1] | strip_html | truncate: 64 }}
20
21
[View changes](/docs/stable/simplesamlphp-changelog)
22
0 commit comments