1.12.0
This release adds support for various Hugo taxonomies, specifically tags, series, and categories.
If you would like to use this feature, you'll need to add the following to your config.toml
for any of the taxonomies you want to use, for example:
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
(You don't have to use all three of these, but any you do want to use, have to be specified here)
Then, simply add the following frontmatter to your episodes:
categories = ["Virtual Reality"]
series = ["Modern Tech Trends"]
tags = ["VR", "Technology"]
Thanks to chrisreddington for this great new feature!
Implemented enhancements:
- [ENHANCEMENT] - Add taxonomies for Tags, Series and Categories #306
- [ENHANCEMENT] Add episode tags support. #245
- Add Category, Tag and Series taxonomies to theme #307 (chrisreddington)