Stand with Ukraine 🇺🇦
Eleventy
The possum is Eleventy’s mascot

Eleventy Documentation

Menu

slug Universal Filter Jump to heading

Starting in Eleventy v1.0.0 it is recommended to use the slugify Universal Filter instead of slug. For backwards compatibility, slug is still included and supported but slugify has better default behavior for URLs with special characters. If you want to swap slug to slugify wholesale in old projects, please read this warning about breaking URLs. Be careful!

Uses the slugify npm package to convert a string into a URL slug. Can be used in pagination or permalinks.

Filename slug.md
---
title: "My Title"
permalink: "/{{ title | slugify }}/"
---
Outputs to `/my-title/`.