mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
10 lines
327 B
TypeScript
10 lines
327 B
TypeScript
import { NewsletterHandler } from './newsletter'
|
|
|
|
export class MorningBrewHandler extends NewsletterHandler {
|
|
constructor() {
|
|
super()
|
|
this.senderRegex = /Morning Brew <crew@morningbrew.com>/
|
|
this.urlRegex = /<a.* href=["']([^"']*)["'].*>View Online<\/a>/
|
|
this.defaultUrl = 'https://www.morningbrew.com'
|
|
}
|
|
}
|