I can easily create a taxonomy, such as tags, and list all the tags as well as view each individual tag. But is it possible to view two tags or more on the same page combined?
As an example, in the below markdown file, I have the tags, Apple and New York.
+++
description = "Best Apples"
tags = ["Apple", "New York"]
title = "Best Apples in New York"
+++
To see all tags, the url is: http://example.com/tags/
To see each individual tag, the url is: http://example.com/tags/apple/ and http://example.com/tags/new-york/
But is it possible to see both tags combined such that the url is something like this: http://example.com/tags/apple-new-york/ or perhaps: http://example.com/tags/apple/new-york/
If this cannot be done through a taxonomy, can this be done with a different approach?