├── _config.yml ├── LICENSE.md ├── README.md └── index.md /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-tactile 2 | plugins: 3 | - jekyll-redirect-from 4 | whitelist: 5 | - jekyll-redirect-from 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | All documents in this Repository are licensed by contributors 2 | under the 3 | [W3C Document License](https://www.w3.org/Consortium/Legal/copyright-documents). 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | 3 | This repository has been superseded by the following repository: 4 | 5 | [https://github.com/w3c/did-wg/tree/main/faqs/2021-formal-objections](https://github.com/w3c/did-wg/tree/main/faqs/2021-formal-objections) 6 | 7 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: https://www.w3.org/2019/did-wg/faqs/2021-formal-objections/ 3 | --- 4 | 5 | This repository has been superseded by the following repository: 6 | 7 | [https://github.com/w3c/did-wg/tree/main/faqs/2021-formal-objections](https://github.com/w3c/did-wg/tree/main/faqs/2021-formal-objections) 8 | 9 | --------------------------------------------------------------------------------