(converter) Add special keyword for websites with a tilde url.

This commit is contained in:
Viktor Lofgren 2023-10-09 17:02:32 +02:00
parent c8d820c17b
commit 8375237de5

View File

@ -52,6 +52,10 @@ public abstract class AbstractDocumentProcessorPlugin {
add("site", url.domain.domain);
add("tld", url.domain.getTld());
if (url.path.startsWith("/~")) {
add("special", "tilde");
}
return this;
}