Closed xavierroy closed 1 year ago
Thanks for bringing this up. Tags can contain emojis when combined with text but it breaks when using only an emoji (or other special char) as tag. The reason is that each tag gets its own page and because the emoji is removed when generating the url, you end up with invalid/duplicate urls.
I see three possible solutions for this:
app.json
. In the example below, the notes can use the tag "πΊοΈ" which would then be displayed as "πΊοΈ Map of Content" and result in the url /tags/map-of-content
.{
"tags": {
"map": {
"πΊοΈ": "πΊοΈ Map of Content",
"π": "π Books"
}
}
}
What do you think?
The tag mapping would work fine. In Obsidian, I could still use emoji-tags and map it via app.json. This allows customizing the title. 1 is browser dependent. Option 2 is dependent on user context - what an emoji means to them.
Thanks for the feedback. I'll add support for this with the next minor version.
Feature shipped π It's available in v0.18.0 that has just been released.
I use a lot of emojis as tags. I use the map emoji (πΊοΈ) for MoCs, books (π) for books.
Currently using emojis as tags breaks. Could you provide support for that?