Browse Source

add trim filters

main
ghost 12 months ago
parent
commit
2f4dbff90d
  1. 6
      templates/default/torrent/info.html.twig

6
templates/default/torrent/info.html.twig

@ -239,7 +239,7 @@
</td> </td>
<td> <td>
{# strip all tags then apply whitelist markdown filters to prevent ping from remote #} {# strip all tags then apply whitelist markdown filters to prevent ping from remote #}
{{ file.source | striptags | markdown_to_html | striptags | url_to_markdown | markdown_to_html }} {{ file.source | trim | striptags | markdown_to_html | striptags | url_to_markdown | markdown_to_html }}
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
@ -250,7 +250,7 @@
</td> </td>
<td> <td>
{# strip all tags then apply whitelist markdown filters to prevent ping from remote #} {# strip all tags then apply whitelist markdown filters to prevent ping from remote #}
{{ file.software | striptags | markdown_to_html | striptags | url_to_markdown | markdown_to_html }} {{ file.software | trim | striptags | markdown_to_html | striptags | url_to_markdown | markdown_to_html }}
</td> </td>
</tr> </tr>
{% endif %} {% endif %}
@ -261,7 +261,7 @@
</td> </td>
<td> <td>
{# strip all tags then apply whitelist markdown filters to prevent ping from remote #} {# strip all tags then apply whitelist markdown filters to prevent ping from remote #}
{{ file.comment | striptags | markdown_to_html | striptags | url_to_markdown | markdown_to_html }} {{ file.comment | trim | striptags | markdown_to_html | striptags | url_to_markdown | markdown_to_html }}
</td> </td>
</tr> </tr>
{% endif %} {% endif %}

Loading…
Cancel
Save