Add | explanation

Christopher Meng
2016-05-23 22:39:39 -05:00
parent 0735530b6c
commit 99f40a00e7
+17 -1
@@ -1 +1,17 @@
GFWList syntax originated from [ABP filters](https://adblockplus.org/filters).
GFWList syntax originated from [ABP filters](https://adblockplus.org/filters).
* `|`: Stands for matching from beginning (In [URI](http://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml), it's **scheme**): e.g.`http://example.com` will match:
`http://example.com`
`http://example.com/page`
`http://example.com.co`
It will **NOT** match:
`http://ns.example.com`
`https://example.com/page`
`https://example.com`
`https://ns.example.com`
`https://example.com.co`
***