In the answer below I show how to show either the tags, and/or aliases, and/or all the rest, it might be a little helpful.
I also comment upon the fact, that currently we don’t have any option to select which of the other fields should or should not show. If that is what you’re after, then you should possible post a feature request (and follow the template for that).
The CSS snippet shown should also be helpful related to doing some more changes if you’re inclined to do so.
Lastly, why do use '#area/map', when it’s enough to do area/map? In most cases, I would think it’s actually wrong to include the quotes and the hashtag when defining a tag in the frontmatter.
Thank you very much @holroy. The CSS solution works perfectly!
About
Lastly, why do use '#area/map' , when it’s enough to do area/map ? In most cases, I would think it’s actually wrong to include the quotes and the hashtag when defining a tag in the frontmatter.
I do this as I started to use obsidian wihtout frontmatter. It looked like :
tags:: #area/log
I then converted all my notes using to frontmatter. The tool (Markdown Janitor) automatically re-wrote all my tags as shown in the screenshots above. Do you see an issue with the formatting on the long run ?
As a coder, I don’t see any issue using quotes in a YAML file.
The main issue as I saw it, was that I got a little confused, and if you actually write Tags: '#area/map', you’ll end up with a first level tag of '#area, and a second level tag of map'. And I like to have consistent markup in my documents, like in the code block above. Having to remember when to add or remove the quotes to get the correct tag, is just something I would rather not need to think about.