Hi,
I just stumbled upon this post because I had the same problem. It looked especially weird because I’m using Templater to fill in some of the tags, so I had entries full of “<%tp…”.
If you’re using the Templater plugin, there is at least a functional workaround available:
In your YAML header, use Templater to consciously scramble the YAML syntax in one way or the other. Just one syntax error, and your entire YAML header will not count towards tags. Example:
---
tags:
- MyFirstTag
<%* tR += " -" %> MySecondTag
aliases: <% tp.date.now("DD.MM.YYYY") %>
---
In case you have additional tags within your text, consider replacing the # symbol with a very simplistic Templater string output. Instead of:
`Tags:` #MyTag
Use:
`Tags:` <%* tR += "#" %>MyTag
It doesn’t look nice, but it works (if you’re not relying on the core Templates plugin). 