blob: 9e467edf53eabe1520fbf7d6f23aeaf02fe61efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
return array(
'grabber' => array(
'%.*%' => array(
'test_url' => 'http://www.pseudo-sciences.org/spip.php?article2275',
'body' => array(
'//div[@id="art_main"]',
),
'strip' => array(
'//div[@id="art_print"]',
'//div[@id="art_chapo"]',
'//img[@class="puce"]',
),
),
),
);
|