remove_words_from_beginning
Removes the specified number of words from the beginning of a sentence.
Specification
{{ text | remove_words_from_beginning: number_of_words=1 }}
Parameter | Description | Example Values |
---|---|---|
text (required) | The given sentence that you want to remove words from the start of. | “this is my title” |
number_of_words (required) | The number of words to remove from the begining of a sentence. | 2 |
Examples
{{ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vel placerat libero.' | remove_words_from_beginning: 3 }}
This will output “sit amet, consectetur adipiscing elit. Donec vel placerat libero.”