The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: account for subtags in numerical tags (closes #1408) (#1410)

authored by

Emile Bangma and committed by
GitHub
cd3bb256 eb9bbd16

+2 -2
+2 -2
quartz/plugins/transformers/ofm.ts
··· 324 324 replacements.push([ 325 325 tagRegex, 326 326 (_value: string, tag: string) => { 327 - // Check if the tag only includes numbers 328 - if (/^\d+$/.test(tag)) { 327 + // Check if the tag only includes numbers and slashes 328 + if (/^[\/\d]+$/.test(tag)) { 329 329 return false 330 330 } 331 331