Manipulate DOM HTML trees, powered by PHP's DOM extension.
Manipulate DOM HTML trees, powered by PHP’s DOM extension.
composer require galvao/gerdr
/path/to/gerdr/bin/gerdr -c /path/to/config.json -d /path/to/dom.html
As an application Gerdr outputs the modified DOM HTML so it can be piped, forwarded, etc… to any bash application.
try {
$gerdr = new Gerdr($dom, $config);
} catch (\Exception $e) {
// Treat the exception
}
try {
$gerdr->process();
} catch (\Exception $e) {
// Treat the exception
}
$result = $gerdr->getModifiedDom();
As of now Gerdr only removes elements/attributes with the remove
action.