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://justcoolidea.ru/idealnyj-sad-samodelnye-proekty-dlya-berezhlivogo-domovladeltsa/',
'body' => array(
'//section[@class="entry-content"]',
),
'strip' => array(
'//script',
'//form',
'//style',
'//*[contains(@class, "essb_links")]',
'//*[contains(@rel, "nofollow")]',
'//*[contains(@class, "ads")]',
),
),
),
);
|