@11ty/eleventy-plugin-pug
v1.0.0
Published
The `pug` template language plugin for Eleventy v3 and newer.
Downloads
246
Readme
@11ty/eleventy-plugin-pug
Adds support for .pug
files in Eleventy v3.0 and newer. Support for pug
was moved out of core as part of Project Slipstream.
- 11ty Docs https://www.11ty.dev/docs/languages/pug/
pug
package: https://pugjs.org/
Installation
npm install @11ty/eleventy-plugin-pug
Add to your configuration file (ESM version shown):
import pugPlugin from "@11ty/eleventy-plugin-pug";
export default function (eleventyConfig) {
eleventyConfig.addPlugin(pugPlugin);
}