mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-28 23:21:04 -05:00
* CssXPath-StarSelector Add support for selectors such as `a[href*="example"]` https://developer.mozilla.org/docs/Web/CSS/Attribute_selectors Translated to `.//a[contains(@href,"example")]` Upstream PR: https://github.com/PhpGt/CssXPath/pull/181 * Upstream merged
5 lines
92 B
PHP
5 lines
92 B
PHP
<?php
|
|
namespace Gt\CssXPath;
|
|
|
|
class NotYetImplementedException extends CssXPathException {}
|