 Issue 30022565:
  Issue 7325 - Let the parser handle filters than begin and end with '%'  (Closed) 
  Base URL: https://hg.adblockplus.org/python-abp
    
  
    Issue 30022565:
  Issue 7325 - Let the parser handle filters than begin and end with '%'  (Closed) 
  Base URL: https://hg.adblockplus.org/python-abp| Index: abp/filters/parser.py | 
| =================================================================== | 
| --- a/abp/filters/parser.py | 
| +++ b/abp/filters/parser.py | 
| @@ -306,7 +306,7 @@ | 
| return Metadata(key, value) | 
| return Comment(stripped[1:].lstrip()) | 
| - if stripped.startswith('%') and stripped.endswith('%'): | 
| + if stripped.startswith('%include') and stripped.endswith('%'): | 
| return _parse_instruction(stripped) | 
| return parse_filter(stripped) |