A plugin that allows yaml file as a local data file for template.
From github,
yarn add https://github.com/gwangyi/eleventy-plugin-yamldata
Open up your Eleventy config file (probably eleventy.js
) and use addPlugin
:
const pluginYamldata = require("eleventy-plugin-yamldata");
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(pluginYamldata);
};
Make a yaml file like filename.11tydata.yaml
same as json/js data file.
This plugin implemented by monkeypatching an internal class of eleventy. If internal classes of eleventy is changed so far, this plugin may not works.