-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdigest_patterns.json
More file actions
34 lines (34 loc) · 1007 Bytes
/
Copy pathdigest_patterns.json
File metadata and controls
34 lines (34 loc) · 1007 Bytes
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
{
"bindings": {
"offerclaw": "bullet_role_url",
"forgamedev": "linkedin_job_bullets"
},
"patterns": [
{
"id": "bullet_role_url",
"description": "OfferClaw-style: bullet + Role — Company (url) + description until next bullet",
"start_line": [
"^[•\\-\\*]\\s+.+(https?://\\S+)"
],
"skip_line": [
"^⸻+$",
"^Больше вакансий",
"^Вакансии для",
"^[💻🎮📱🌐🐍☕🤖]"
],
"min_blocks": 2
},
{
"id": "linkedin_job_bullets",
"description": "Forgamedev-style: 🔹Role or markdown [🔹Role](linkedin.com/jobs/...) per vacancy",
"start_line": [
"^🔹\\s*\\[.+\\]\\(https?://[^\\s)]+\\)",
"^\\[🔹[^\\]]*\\]\\(https?://[^\\s)]+\\)",
"^🔹\\s+.+(https?://\\S*linkedin\\.com/jobs/\\S*)",
"^[•\\-\\*]\\s*.+\\(https?://\\S*linkedin\\.com/jobs/\\S*\\)"
],
"skip_line": [],
"min_blocks": 2
}
]
}