Ignore hyphenated themes

This commit is contained in:
Zohan Subhash
2023-03-01 12:34:10 +05:30
committed by GitHub
parent cdf14dbbfb
commit 320ad3dc95
+1
View File
@@ -56,6 +56,7 @@ const createStatMdLink = (theme) => {
const generateLinks = (fn) => {
return Object.keys(themes)
.map((name) => fn(name))
.filter((name) => !name.includes('-'))
.join("");
};