diff --git a/filters/prepend.md b/filters/prepend.md index 71def9f..0409427 100644 --- a/filters/prepend.md +++ b/filters/prepend.md @@ -22,7 +22,7 @@ You can also `prepend` variables:
Input
```liquid {% raw %} -{% assign url = "liquidmarkup.com" %} +{% assign url = "example.com" %} {{ "/index.html" | prepend: url }} {% endraw %} @@ -30,7 +30,7 @@ You can also `prepend` variables:Output
```text -{% assign url = "liquidmarkup.com" %} +{% assign url = "example.com" %} {{ "/index.html" | prepend: url }} ```