├── .github └── ISSUE_TEMPLATE │ ├── add-a-new-gap-analysis-topic.md │ ├── ask-a-question.md │ ├── formTest.yml │ ├── form_test.md │ ├── formtest │ └── other.md ├── .gitignore ├── CONTRIBUTING.md ├── EDITING.md ├── LICENCE.md ├── README.md ├── charter ├── charter2017.html └── index.html ├── echidna ├── fonts └── TibMachUni-1.901.woff ├── gap-analysis ├── echidna-tibt-gap └── index.html ├── home.md ├── homepage ├── index-data │ ├── local.css │ └── translations.js └── index.html ├── images ├── fig_stack.svg └── syllable.png ├── index.html ├── local.css ├── print.css ├── script.js ├── tibt ├── echidna ├── images │ ├── fig_stack.svg │ └── syllable.png ├── index.html └── local.css └── w3c.json /.github/ISSUE_TEMPLATE/add-a-new-gap-analysis-topic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/.github/ISSUE_TEMPLATE/add-a-new-gap-analysis-topic.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/.github/ISSUE_TEMPLATE/ask-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/formTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/.github/ISSUE_TEMPLATE/formTest.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/form_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/.github/ISSUE_TEMPLATE/form_test.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/formtest: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EDITING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/EDITING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/README.md -------------------------------------------------------------------------------- /charter/charter2017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/charter/charter2017.html -------------------------------------------------------------------------------- /charter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/charter/index.html -------------------------------------------------------------------------------- /echidna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/echidna -------------------------------------------------------------------------------- /fonts/TibMachUni-1.901.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/fonts/TibMachUni-1.901.woff -------------------------------------------------------------------------------- /gap-analysis/echidna-tibt-gap: -------------------------------------------------------------------------------- 1 | # ECHIDNA configuration 2 | index.html?specStatus=DNOTE&shortName=tibt-gap respec 3 | -------------------------------------------------------------------------------- /gap-analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/gap-analysis/index.html -------------------------------------------------------------------------------- /home.md: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /homepage/index-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/homepage/index-data/local.css -------------------------------------------------------------------------------- /homepage/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/homepage/index-data/translations.js -------------------------------------------------------------------------------- /homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/homepage/index.html -------------------------------------------------------------------------------- /images/fig_stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/images/fig_stack.svg -------------------------------------------------------------------------------- /images/syllable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/images/syllable.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/index.html -------------------------------------------------------------------------------- /local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/local.css -------------------------------------------------------------------------------- /print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/print.css -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/script.js -------------------------------------------------------------------------------- /tibt/echidna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/tibt/echidna -------------------------------------------------------------------------------- /tibt/images/fig_stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/tibt/images/fig_stack.svg -------------------------------------------------------------------------------- /tibt/images/syllable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/tibt/images/syllable.png -------------------------------------------------------------------------------- /tibt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/tibt/index.html -------------------------------------------------------------------------------- /tibt/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/tibt/local.css -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/tlreq/HEAD/w3c.json --------------------------------------------------------------------------------