ryanhornberger / nunjucks-html-loader

Webpack Loader for Nunjucks that returns raw html. Also works with Webpack watching system.
MIT License
27 stars 23 forks source link

add support for front-matter #10

Open lazabogdan opened 6 years ago

lazabogdan commented 6 years ago

Hey guys,

Would you be interested in merging this? It adds support for front-matter:

It allows for templates like this:

---
title: Just hack'n
description: Nothing to see here
---

<h1>{{ title }}</h1>
<p>{{ description }}</p>