DEV Community

Discussion on: Use eleventy to create my static page

Collapse
 
bayuangora profile image
Bayu Angora • Edited

With Hugo, I can excerpt article easily with this parameter ->

{{ .Summary | truncate 80 }}

How to excerpt with Eleventy?

Collapse
 
gabbersepp profile image
Josef Biehler

Hi,

do you use Nunjucks?

Then give this a try:

{% set text = "<b>very</b> very large text" %}

{{ text | striptags(true) | truncate(10) }}

Outcome:

very very...
Collapse
 
bayuangora profile image
Bayu Angora • Edited

I use liquid. I follow this tutorial and it works.