implement some feautres in transcript search

This commit is contained in:
2024-12-26 13:37:33 -06:00
parent f705cca038
commit 0dcb7634ae
8 changed files with 101 additions and 30 deletions

View File

@@ -0,0 +1,9 @@
const {extractSeasonEpisode, episodeNumber} = require('../../utils/filters');
module.exports = {
"tags":["transcript"],
"eleventyComputed": {
"episode": (data) => extractSeasonEpisode(data.page.fileSlug).episode,
"season": (data) => extractSeasonEpisode(data.page.fileSlug).season || 1,
}
}

View File

@@ -1,3 +0,0 @@
{
"tags":["transcript"]
}