diff --git a/README.md b/README.md index 10d3976..171085b 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,11 @@ By default, a _word_ will not be truncated. Set the optional boolean after the c
{{ text | characters:25 :true}}
- ``` \ No newline at end of file + ``` + +Filters can also be chained together. It will truncate after 25 words or before 25 words if the 100 character limit is reached. + ```html ++ {{ text | words:25 | characters: 100}} +
+ ```