fix: allow tags with spaces

surely this will not be a problem later
This commit is contained in:
eggy 2024-04-04 14:49:29 -04:00
parent 62e1d7ef22
commit d5bd3e3be2
2 changed files with 0 additions and 2 deletions

View File

@ -14,7 +14,6 @@ const tags = new Set(
docs
.map((p) => p.tags)
.flat()
.filter((p) => !p.includes(" "))
.sort()
);
</script>

View File

@ -14,7 +14,6 @@ const tags = new Set(
docs
.map((p) => p.tags)
.flat()
.filter((p) => !p.includes(" ")) // do not include AO3-style tags
.sort()
);
</script>