mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-14 17:26:10 +01:00
20 lines
574 B
PHP
20 lines
574 B
PHP
|
|
<?php
|
||
|
|
return array(
|
||
|
|
'grabber' => array(
|
||
|
|
'%.*%' => array(
|
||
|
|
'test_url' => 'http://dailyjs.com/2014/08/07/p5js/',
|
||
|
|
'body' => array(
|
||
|
|
'//div[@id="post"]',
|
||
|
|
),
|
||
|
|
'strip' => array(
|
||
|
|
'//h2[@class="post"]',
|
||
|
|
'//div[@class="meta"]',
|
||
|
|
'//*[contains(@class, "addthis_toolbox")]',
|
||
|
|
'//*[contains(@class, "addthis_default_style")]',
|
||
|
|
'//*[@class="navigation small"]',
|
||
|
|
'//*[@id="related"]',
|
||
|
|
),
|
||
|
|
),
|
||
|
|
),
|
||
|
|
);
|