blob: 4e4324812f6e96d82fb9d97ca22a006d3d999532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
return array(
'grabber' => array(
'%.*%' => array(
'test_url' => 'http://gorabbit.ru/article/10-oshchushcheniy-za-rulem-kogda-tolko-poluchil-voditelskie-prava',
'body' => array(
'//div[@class="detail_text"]',
),
'strip' => array(
'//script',
'//form',
'//style',
'//div[@class="socials"]',
'//div[@id="cr_1"]',
'//div[@class="related_items"]',
),
),
),
);
|