-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslipknot.toml
52 lines (42 loc) · 959 Bytes
/
slipknot.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# slipknot example config
# Root settings for the updater.
freq = "5min"
cache = "2min"
# Settings that apply to **everything**.
[global]
[global.filters]
exclude-title-words = [
"llm",
]
exclude-content-words = [
"javascript",
"node",
"nodejs",
]
[global.options]
# Maximum feeds returned, something sane.
max = 512
# Oldest entry stored.
oldest = "1month"
# Settings that apply to the all feed.
[all]
exclude-title-words = [
"release",
]
# Feed definitions.
[feeds]
[feeds.hacking]
feeds = ["hackernews", "ziglang-compilation"]
[feeds.hackernews]
url = "https://news.ycombinator.com/rss"
tags = ["tech", "news"]
exclude-title-words = ["llm", "hiring"]
freq = "1hr"
[feeds.ziglang-compilation]
url = "https://ziglang.org/devlog/index.xml"
tags = ["blog", "zig", "tech"]
include-substrings = ["llvm", "compilation", "binary", "optimization"]
[feeds.nhk]
url = "https://www3.nhk.or.jp/rss/news/cat0.xml"
tags = ["news", "japanese"]
max = 5