Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chriscoyier/linting-html-with-css
Demo of Ire Aderinokun's https://bitsofco.de/linting-html-using-css/
https://github.com/chriscoyier/linting-html-with-css
Last synced: 3 months ago
JSON representation
Demo of Ire Aderinokun's https://bitsofco.de/linting-html-using-css/
- Host: GitHub
- URL: https://github.com/chriscoyier/linting-html-with-css
- Owner: chriscoyier
- License: other
- Created: 2017-03-12T13:40:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-07T20:35:35.000Z (almost 6 years ago)
- Last Synced: 2024-07-18T03:44:56.440Z (4 months ago)
- Language: CSS
- Size: 4.88 KB
- Stars: 41
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
- Ire Aderinokun's concept: https://bitsofco.de/linting-html-using-css/
- Demo page: https://chriscoyier.github.io/linting-html-with-css/### Bookmarklet
```js
javascript:(function() {
var link = document.createElement("link");
link.rel = "stylesheet";
link.href = "https://cdn.jsdelivr.net/gh/chriscoyier/linting-html-with-css/lint.css";
document.getElementsByTagName("head")[0].appendChild(link);
})();
```### Ideas:
- ✅ Bookmarklet to inject CSS (done by Paul Esch-Laurent!)
- ✅ Browser extension to inject the CSS (Done by Ire herself! https://github.com/ireade/alix)