📚 Added a library with a masonry grid

This commit is contained in:
2021-09-20 08:24:03 -07:00
parent 8e518c93a8
commit 7d56be71f9
10 changed files with 150 additions and 9 deletions

View File

@@ -5,9 +5,8 @@ export const detectTradePaperbacks = (deck): any => {
/((trade)?\s?(paperback)|(tpb))/gim, // https://regex101.com/r/FhuowT/1
/(hard\s?cover)\s?(collect((ion)|(ed)|(ing)))/gim, //https://regex101.com/r/eFJVRM/1
];
const miniSeries = [
const miniSeries = [/mini\Wseries/gim];
]
const matches = paperback
.map((regex) => {
return deck.match(regex);