-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewsHtmlStructure.js
More file actions
50 lines (49 loc) · 1.77 KB
/
newsHtmlStructure.js
File metadata and controls
50 lines (49 loc) · 1.77 KB
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
//not currently in use
const htmlStructures = [
{
"name":"tribun-banjarmasin",
"baseurl":"https://banjarmasin.tribunnews.com/topic/kriminalitas-banjarmasin",
"dom":"li.p2030 > div >h3.f20.ln24.fbo>a",
"domtitle":"h1#arttitle",
"domimg":"div#artimg>div.pb20.ovh>div.ovh.imgfull_div>img",
"domcontent":"div.side-article.txt-article>p",
"component":["title","image","news"],
"category":"kriminal",
"page_param":"?&page=",
"interval":1,
"from":1,
"to":1,
"status":true
},
{
"name":"kalsel-antara-news",
"baseurl":"https://kalsel.antaranews.com/search/kriminal",
"dom":"article.simple-post.simple-big.clearfix>div.simple-thumb>a",
"domtitle":"div#print_content>header.post-header>h1.post-title",
"domimg":"div#print_content>header.post-header>figure.image-overlay>img",
"domcontent":"div.post-content.clearfix.print>p",
"component":["title","image","news"],
"category":"kriminal",
"page_param":"/",
"interval":1,
"from":1,
"to":1,
"status":true
},
{
"name":"randar-banjarmasin",
"baseurl":"https://kalsel.prokal.co/rubrik/index/2-hukum-peristiwa",
"dom":'div.media>div.media-body>a',
"domtitle":'div[style="padding:10px 20px 10px 20px;"]>div[style="font-family: utopiareg;margin: 5px 0 15px 0;font-size:40px;line-height:1"]',
"domimg":'div[style="padding:10px 20px 10px 20px;"]>img',
"domcontent":"div#bodytext>p",
"component":["title","image","news"],
"category":"kriminal",
"page_param":"/",
"interval":11,
"from":11,
"to":11,
"status":false
}
];
module.exports = htmlStructures;