Is it possible to add an option to only enumerate unique items from a post's categories and tags?
Input
---
layout: post
categories: ["Category", "Sub-category"]
tags: ["Tag1", "Tag2", "Category"]
---
Expected feed.xml
<category term="Category"/>
<category term="Sub-category"/>
<category term="Tag1"/>
<category term="Tag2"/>
Actual feed.xml
The item Category is enumerated twice.
<category term="Category"/>
<category term="Sub-category"/>
<category term="Tag1"/>
<category term="Tag2"/>
<category term="Category"/>