gitextract_hh2g8fv3/ ├── .github/ │ └── CONTRIBUTING.md ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── build/ │ └── pipeline.yml ├── samples/ │ ├── helloworld/ │ │ ├── .vscode/ │ │ │ └── settings.json │ │ ├── README.md │ │ ├── css.css-data.json │ │ ├── html.html-data.json │ │ ├── test.css │ │ └── test.html │ ├── svg/ │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── build/ │ │ │ ├── index.ts │ │ │ ├── mdn-bcd.ts │ │ │ ├── mdn-data.ts │ │ │ ├── mdn-description.ts │ │ │ ├── postprocess.ts │ │ │ ├── svg-spec.ts │ │ │ └── util.ts │ │ ├── data/ │ │ │ ├── svg.css-data.json │ │ │ └── svg.html-data.json │ │ ├── package.json │ │ ├── raw-data/ │ │ │ ├── definitions.xml │ │ │ ├── svg-css-contribution.json │ │ │ └── svg-html-contribution.json │ │ ├── test.css │ │ ├── test.html │ │ └── tsconfig.json │ └── webcomponents/ │ ├── .vscode/ │ │ └── settings.json │ ├── README.md │ ├── index.html │ └── src/ │ ├── components/ │ │ └── my-component/ │ │ ├── docs.md │ │ └── main.js │ └── web-components.html-data.json └── web-data/ ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── css/ │ ├── add-atrule-descriptors.mjs │ ├── chromestatus/ │ │ ├── applyRelevance.mjs │ │ ├── attributeRelevance.mjs │ │ └── updateRelevance.mjs │ ├── css-schema.json │ ├── generateData.mjs │ ├── mdn/ │ │ ├── mdn-browser-compat-data-importer.mjs │ │ ├── mdn-data-importer.mjs │ │ ├── mdn-data-selector-importer.mjs │ │ └── mdn-documentation.mjs │ └── utils.mjs ├── data/ │ ├── browsers.css-data.json │ └── browsers.html-data.json ├── html/ │ ├── ariaData.json │ ├── ariaSpec.json │ ├── generateData.mjs │ ├── htmlEvents.json │ ├── htmlGlobalAttributes.json │ ├── htmlTags.json │ ├── mdnTagDescriptions.json │ ├── oldEvents.json │ └── valueSets.json └── package.json