summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Rules/nature.com.php
blob: 1dad8b66fab593e61a52a365b3d2a2c6f9140a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
return array(
    'grabber' => array(
       'http://dx.doi.org/10.1038.*%' => array(
            'test_url' => 'http://dx.doi.org/10.1038/525184a',
            'body' => array(
                '//div[@class="content "]',
            ),
            'strip' => array()
        ),
        '%.*%' => array(
            'test_url' => 'http://www.nature.com/doifinder/10.1038/nature.2015.18340',
            'body' => array(
                '//div[contains(@class,"main-content")]',
            ),
            'strip' => array()
        ),
    )
);