Fix: Dokuwiki can't parse double slashes

This commit is contained in:
phil 2023-10-23 17:53:08 +02:00
parent ab6ba6ee59
commit 5797b88e88

View file

@ -2,5 +2,5 @@
^ Device ^ Mount point ^ File system ^ Size ^
{% for item in ansible_mounts %}
| {{ item.device }} | {{ item.mount }} | {{ item.fstype }} | {{ item.size_total | human_readable(unit="G") }} |
| {{ item.device | replace('//', '/') }} | {{ item.mount }} | {{ item.fstype }} | {{ item.size_total | human_readable(unit="G") }} |
{% endfor %}