···324324 replacements.push([
325325 tagRegex,
326326 (_value: string, tag: string) => {
327327- // Check if the tag only includes numbers
328328- if (/^\d+$/.test(tag)) {
327327+ // Check if the tag only includes numbers and slashes
328328+ if (/^[\/\d]+$/.test(tag)) {
329329 return false
330330 }
331331