Create a content handler for GitHub pages

This will search for the markdown <article> element and make it
the only page element so we add a repo's README.
This commit is contained in:
Jackson Harper 2022-10-13 18:11:11 +08:00
parent 14c87a1240
commit f39c6923b0

View file

@ -9,6 +9,7 @@ import { TDotCoHandler } from './websites/t-dot-co-handler'
import { TwitterHandler } from './websites/twitter-handler'
import { YoutubeHandler } from './websites/youtube-handler'
import { WikipediaHandler } from './websites/wikipedia-handler'
import { GitHubHandler } from './websites/github-handler'
import {
ContentHandler,
NewsletterInput,
@ -52,6 +53,7 @@ const contentHandlers: ContentHandler[] = [
new TwitterHandler(),
new YoutubeHandler(),
new WikipediaHandler(),
new GitHubHandler(),
new AxiosHandler(),
new GolangHandler(),
new MorningBrewHandler(),