A collection of shortcodes, filters and tags that make blogging on 11ty more fun
Blog Tools for 11ty is a plugin that provides users with shortcodes and filters to assist in writing and organizing blog content. It offers features such as creating excerpts from pages, embedding YouTube and Vimeo videos, customizing CodePen embeds, and filtering collections based on specific criteria.
<!-- excerpt --> tag in the markdown, specifying start and end points with HTML comments (<!-- excerpt start --> and <!-- excerpt end -->), or by specifying an excerpt property in the MD file’s frontmatter. If no excerpt is found, the first paragraph of the post will be used.To install the Blog Tools for 11ty plugin, follow these steps:
.eleventy.js).module.exports = function (eleventyConfig) {
// Other config settings
eleventyConfig.addPlugin(require('blog-tools-for-11ty'));
};
Blog Tools for 11ty is a helpful plugin for anyone using the Eleventy static site generator for their blog. It provides useful features like creating excerpts, embedding videos from YouTube and Vimeo, customizing CodePen embeds, and filtering collections based on specific criteria. By integrating this plugin into their Eleventy setup, bloggers can enhance their writing and organization process.