├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── index.bs └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Ygg01] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | index.bk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ygg01/xml5_draft/HEAD/README.md -------------------------------------------------------------------------------- /index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ygg01/xml5_draft/HEAD/index.bs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ygg01/xml5_draft/HEAD/index.html --------------------------------------------------------------------------------