Skip to content

Commit

Permalink
Allow to use '*' wildcard for path matching
Browse files Browse the repository at this point in the history
Fixes #118
  • Loading branch information
Alexander Shalamov committed May 19, 2017
1 parent 8852901 commit 9f5e5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -2405,7 +2405,7 @@
<dfn data-lt="url pattern">url-pattern</dfn> = <a data-lt="star scheme">scheme</a> <code>"://"</code> <a data-lt="star host">host</a> <a data-lt="star path">path</a>
<dfn data-lt="star scheme">scheme</dfn> = <code>"*"</code> / <code>"https"</code>
<dfn data-lt="star host">host</dfn> = <code>"*"</code> / <code>"*."</code> &lt;VCHAR except <code>"/"</code> and <code>"*"</code>&gt;
<dfn data-lt="star path">path</dfn> = <code>"/"</code> &lt;VCHAR&gt;
<dfn data-lt="star path">path</dfn> = <code>"*"</code> / <code>"/"</code> &lt;VCHAR&gt;
</pre>
</p>
<p>
Expand Down

0 comments on commit 9f5e5ab

Please sign in to comment.