├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 0-new-issue.yml │ ├── 1-new-feature.yml │ └── config.yml └── workflows │ └── build.yml ├── .gitignore ├── .pr-preview.json ├── 202012-update.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── dev-trials-feedack.md ├── docs └── urlpattern.md ├── explainer.md ├── howto.md ├── mdn-drafts └── QUICK-REFERENCE.md ├── review-drafts ├── 2024-03.bs ├── 2025-03.bs └── 2025-09.bs ├── spec.bs └── tag-security-privacy.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0-new-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.github/ISSUE_TEMPLATE/0-new-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.github/ISSUE_TEMPLATE/1-new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.gitignore -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /202012-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/202012-update.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/README.md -------------------------------------------------------------------------------- /dev-trials-feedack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/dev-trials-feedack.md -------------------------------------------------------------------------------- /docs/urlpattern.md: -------------------------------------------------------------------------------- 1 | This document has [moved](../mdn-drafts/QUICK-REFERENCE.md). 2 | -------------------------------------------------------------------------------- /explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/explainer.md -------------------------------------------------------------------------------- /howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/howto.md -------------------------------------------------------------------------------- /mdn-drafts/QUICK-REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/mdn-drafts/QUICK-REFERENCE.md -------------------------------------------------------------------------------- /review-drafts/2024-03.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/review-drafts/2024-03.bs -------------------------------------------------------------------------------- /review-drafts/2025-03.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/review-drafts/2025-03.bs -------------------------------------------------------------------------------- /review-drafts/2025-09.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/review-drafts/2025-09.bs -------------------------------------------------------------------------------- /spec.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/spec.bs -------------------------------------------------------------------------------- /tag-security-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/urlpattern/HEAD/tag-security-privacy.md --------------------------------------------------------------------------------