that is a lot of changes wow
Some checks failed
/ build (push) Failing after 47s

This commit is contained in:
Dustin Thomas 2025-08-22 12:55:55 -05:00
parent 2970fa1a15
commit 37e69a7b17
Signed by: cptlobster
GPG key ID: 33D607425C830B4C
14 changed files with 1123 additions and 20 deletions

View file

@ -16,3 +16,9 @@ to = "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
from = ".*ic"
to = "https://en.wikipedia.org/wiki/Special:Random"
using = "regex"
[[routes]]
from = "dod([fs][0-9]{2})e([0-9]{3})"
# Capture groups can be replaced using numbered capture groups (`$1`, `$2`, ...)
to = "https://dod.cptlobster.dev/episodes/$1/$2"
using = "regex"