├── .editorconfig ├── .editorconfig.template ├── .gitattributes.template ├── .github ├── ISSUE_TEMPLATE │ ├── 0-new-issue.yml.template │ ├── 1-new-feature.yml.template │ └── config.yml.template └── workflows │ └── build.yml.template ├── .gitignore.template ├── .pr-preview.json.template ├── LICENSE ├── LICENSE.template ├── Makefile.template ├── PULL_REQUEST_TEMPLATE.md.template ├── README.md ├── README.md.anne.template-part ├── README.md.template ├── factory.json └── factory.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.editorconfig -------------------------------------------------------------------------------- /.editorconfig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.editorconfig.template -------------------------------------------------------------------------------- /.gitattributes.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.gitattributes.template -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0-new-issue.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.github/ISSUE_TEMPLATE/0-new-issue.yml.template -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-new-feature.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.github/ISSUE_TEMPLATE/1-new-feature.yml.template -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.github/ISSUE_TEMPLATE/config.yml.template -------------------------------------------------------------------------------- /.github/workflows/build.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.github/workflows/build.yml.template -------------------------------------------------------------------------------- /.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.gitignore.template -------------------------------------------------------------------------------- /.pr-preview.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/.pr-preview.json.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/LICENSE.template -------------------------------------------------------------------------------- /Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/Makefile.template -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/PULL_REQUEST_TEMPLATE.md.template -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/README.md -------------------------------------------------------------------------------- /README.md.anne.template-part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/README.md.anne.template-part -------------------------------------------------------------------------------- /README.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/README.md.template -------------------------------------------------------------------------------- /factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/factory.json -------------------------------------------------------------------------------- /factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/spec-factory/HEAD/factory.py --------------------------------------------------------------------------------