blob: cd6b53965ba8cecade5d242c64b3970b7a27006f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"plugins": {
"juusomikkonen_blog_rss": {
"plugin": "FeedSourcePlugin",
"trigger_type": "schedule",
"schedule_expr": "schedule.every(10).seconds",
"feed_url": "https://juusomikkonen.com/feed.xml"
},
"title_filter": {
"plugin": "FilterPlugin",
"trigger_type": "input_change",
"filter_expr": "'Guarding against any-typed values in TypeScript' in item.title"
}
},
"graph": {
"juusomikkonen_blog_rss": [
"title_filter"
]
}
}
|