mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 02:05:41 +03:00
409 B
409 B
title, description
| title | description |
|---|---|
| url_decode | Liquid filter that decodes percent-encoded characters in a string. |
Decodes a string that has been encoded as a URL or by [url_encode]({{ '/filters/url_encode' | prepend: site.baseurl }}).
Input
```liquid {% raw %} {{ "%27Stop%21%27+said+Fred" | url_decode }} {% endraw %} ```Output
```text 'Stop!' said Fred ```