├── .editorconfig ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── dependabot-auto-merge.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── gatsby-browser.tsx ├── gatsby-config.ts ├── gatsby-node.ts ├── gatsby-ssr.tsx ├── netlify.toml ├── package.json ├── readme.md ├── src ├── components │ ├── Aside │ │ ├── Aside.tsx │ │ ├── aside.module.css │ │ ├── aside.module.css.d.ts │ │ └── index.ts │ ├── Categories │ │ ├── Categories.tsx │ │ └── index.ts │ ├── Category │ │ ├── Category.tsx │ │ └── index.ts │ ├── Column │ │ ├── Column.tsx │ │ ├── column.module.css │ │ ├── column.module.css.d.ts │ │ └── index.ts │ ├── Content │ │ ├── Content.tsx │ │ ├── content.module.css │ │ ├── content.module.css.d.ts │ │ └── index.ts │ ├── Footer │ │ ├── Footer.tsx │ │ ├── footer.module.css │ │ ├── footer.module.css.d.ts │ │ └── index.ts │ ├── GitHub │ │ ├── GitHub.tsx │ │ ├── github.module.css │ │ ├── github.module.css.d.ts │ │ └── index.ts │ ├── Grid │ │ ├── Grid.tsx │ │ ├── grid.module.css │ │ ├── grid.module.css.d.ts │ │ └── index.ts │ ├── Header │ │ ├── Header.tsx │ │ ├── header.module.css │ │ ├── header.module.css.d.ts │ │ └── index.ts │ ├── Main │ │ ├── Main.tsx │ │ ├── index.ts │ │ ├── main.module.css │ │ └── main.module.css.d.ts │ ├── Navigation │ │ ├── Navigation.tsx │ │ ├── index.ts │ │ ├── navigation.module.css │ │ └── navigation.module.css.d.ts │ ├── Row │ │ ├── Row.tsx │ │ ├── index.ts │ │ ├── row.module.css │ │ └── row.module.css.d.ts │ ├── SEO │ │ ├── SEO.tsx │ │ └── index.ts │ ├── Section │ │ ├── Section.tsx │ │ ├── index.ts │ │ ├── section.module.css │ │ └── section.module.css.d.ts │ └── index.ts ├── constants │ ├── resources.ts │ └── tools.ts ├── data │ ├── anchor │ │ ├── external-links │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── title-attribute │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── attribute │ │ ├── attribute-case │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ ├── attribute-content │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ ├── attribute-value │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ ├── boolean-attribute │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── equal-sign │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── comment │ │ ├── comment-marker │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── single-line-comment │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── css │ │ ├── inline-styles │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── type │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── document │ │ ├── character-encoding │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── encoding │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── form │ │ └── input-type │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── general │ │ └── indentation │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── headline │ │ └── heading-hierarchy │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── image │ │ ├── alt-attribute │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── dimensions │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── javascript │ │ ├── event-handlers │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ ├── external-files │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ │ └── type │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── link │ │ └── protocol │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── selector │ │ └── id-class │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ ├── string │ │ └── quotation-marks │ │ │ ├── bad.md │ │ │ ├── good.md │ │ │ └── index.md │ └── tag │ │ ├── closing-tag │ │ ├── bad.md │ │ ├── good.md │ │ └── index.md │ │ ├── empty │ │ ├── bad.md │ │ ├── good.md │ │ └── index.md │ │ ├── newline │ │ ├── bad.md │ │ ├── good.md │ │ └── index.md │ │ ├── self-closing │ │ ├── bad.md │ │ ├── good.md │ │ └── index.md │ │ └── tag-case │ │ ├── bad.md │ │ ├── good.md │ │ └── index.md ├── hooks │ ├── index.tsx │ └── site-metadata.tsx ├── images │ └── favicon.png ├── layouts │ ├── Default │ │ ├── Default.tsx │ │ └── index.ts │ └── index.ts ├── pages │ └── index.tsx └── styles │ └── main.css ├── static ├── googleb71e0a1ab44fbe42.html ├── images │ └── html5.svg └── robots.txt └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | node_modules 3 | public 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .cache 2 | node_modules 3 | public 4 | src/data 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/.stylelintrc -------------------------------------------------------------------------------- /gatsby-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/gatsby-browser.tsx -------------------------------------------------------------------------------- /gatsby-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/gatsby-config.ts -------------------------------------------------------------------------------- /gatsby-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/gatsby-node.ts -------------------------------------------------------------------------------- /gatsby-ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/gatsby-ssr.tsx -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/readme.md -------------------------------------------------------------------------------- /src/components/Aside/Aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Aside/Aside.tsx -------------------------------------------------------------------------------- /src/components/Aside/aside.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Aside/aside.module.css -------------------------------------------------------------------------------- /src/components/Aside/aside.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Aside/aside.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Aside/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Aside/index.ts -------------------------------------------------------------------------------- /src/components/Categories/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Categories/Categories.tsx -------------------------------------------------------------------------------- /src/components/Categories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Categories/index.ts -------------------------------------------------------------------------------- /src/components/Category/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Category/Category.tsx -------------------------------------------------------------------------------- /src/components/Category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Category/index.ts -------------------------------------------------------------------------------- /src/components/Column/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Column/Column.tsx -------------------------------------------------------------------------------- /src/components/Column/column.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Column/column.module.css -------------------------------------------------------------------------------- /src/components/Column/column.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Column/column.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Column/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Column/index.ts -------------------------------------------------------------------------------- /src/components/Content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Content/Content.tsx -------------------------------------------------------------------------------- /src/components/Content/content.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Content/content.module.css -------------------------------------------------------------------------------- /src/components/Content/content.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Content/content.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Content/index.ts -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Footer/footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Footer/footer.module.css -------------------------------------------------------------------------------- /src/components/Footer/footer.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Footer/footer.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Footer/index.ts -------------------------------------------------------------------------------- /src/components/GitHub/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/GitHub/GitHub.tsx -------------------------------------------------------------------------------- /src/components/GitHub/github.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/GitHub/github.module.css -------------------------------------------------------------------------------- /src/components/GitHub/github.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/GitHub/github.module.css.d.ts -------------------------------------------------------------------------------- /src/components/GitHub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/GitHub/index.ts -------------------------------------------------------------------------------- /src/components/Grid/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Grid/Grid.tsx -------------------------------------------------------------------------------- /src/components/Grid/grid.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Grid/grid.module.css -------------------------------------------------------------------------------- /src/components/Grid/grid.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Grid/grid.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Grid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Grid/index.ts -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Header/header.module.css -------------------------------------------------------------------------------- /src/components/Header/header.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Header/header.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Header/index.ts -------------------------------------------------------------------------------- /src/components/Main/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Main/Main.tsx -------------------------------------------------------------------------------- /src/components/Main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Main/index.ts -------------------------------------------------------------------------------- /src/components/Main/main.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Main/main.module.css -------------------------------------------------------------------------------- /src/components/Main/main.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Main/main.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Navigation/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Navigation/Navigation.tsx -------------------------------------------------------------------------------- /src/components/Navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Navigation/index.ts -------------------------------------------------------------------------------- /src/components/Navigation/navigation.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Navigation/navigation.module.css -------------------------------------------------------------------------------- /src/components/Navigation/navigation.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Navigation/navigation.module.css.d.ts -------------------------------------------------------------------------------- /src/components/Row/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Row/Row.tsx -------------------------------------------------------------------------------- /src/components/Row/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Row/index.ts -------------------------------------------------------------------------------- /src/components/Row/row.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Row/row.module.css -------------------------------------------------------------------------------- /src/components/Row/row.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Row/row.module.css.d.ts -------------------------------------------------------------------------------- /src/components/SEO/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/SEO/SEO.tsx -------------------------------------------------------------------------------- /src/components/SEO/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/SEO/index.ts -------------------------------------------------------------------------------- /src/components/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Section/Section.tsx -------------------------------------------------------------------------------- /src/components/Section/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Section/index.ts -------------------------------------------------------------------------------- /src/components/Section/section.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Section/section.module.css -------------------------------------------------------------------------------- /src/components/Section/section.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/Section/section.module.css.d.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/constants/resources.ts -------------------------------------------------------------------------------- /src/constants/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/constants/tools.ts -------------------------------------------------------------------------------- /src/data/anchor/external-links/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/anchor/external-links/bad.md -------------------------------------------------------------------------------- /src/data/anchor/external-links/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/anchor/external-links/good.md -------------------------------------------------------------------------------- /src/data/anchor/external-links/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/anchor/external-links/index.md -------------------------------------------------------------------------------- /src/data/anchor/title-attribute/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | Link 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/anchor/title-attribute/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | Link 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/anchor/title-attribute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/anchor/title-attribute/index.md -------------------------------------------------------------------------------- /src/data/attribute/attribute-case/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/attribute-case/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/attribute-case/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/attribute/attribute-case/index.md -------------------------------------------------------------------------------- /src/data/attribute/attribute-content/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/attribute-content/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/attribute-content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/attribute/attribute-content/index.md -------------------------------------------------------------------------------- /src/data/attribute/attribute-value/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/attribute-value/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/attribute-value/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/attribute/attribute-value/index.md -------------------------------------------------------------------------------- /src/data/attribute/boolean-attribute/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/attribute/boolean-attribute/bad.md -------------------------------------------------------------------------------- /src/data/attribute/boolean-attribute/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/boolean-attribute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/attribute/boolean-attribute/index.md -------------------------------------------------------------------------------- /src/data/attribute/equal-sign/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/equal-sign/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/attribute/equal-sign/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/attribute/equal-sign/index.md -------------------------------------------------------------------------------- /src/data/comment/comment-marker/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/comment/comment-marker/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/comment/comment-marker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/comment/comment-marker/index.md -------------------------------------------------------------------------------- /src/data/comment/single-line-comment/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/comment/single-line-comment/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | 4 | ``` 5 | -------------------------------------------------------------------------------- /src/data/comment/single-line-comment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/comment/single-line-comment/index.md -------------------------------------------------------------------------------- /src/data/css/inline-styles/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/css/inline-styles/bad.md -------------------------------------------------------------------------------- /src/data/css/inline-styles/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/css/inline-styles/good.md -------------------------------------------------------------------------------- /src/data/css/inline-styles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/css/inline-styles/index.md -------------------------------------------------------------------------------- /src/data/css/type/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/css/type/bad.md -------------------------------------------------------------------------------- /src/data/css/type/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/css/type/good.md -------------------------------------------------------------------------------- /src/data/css/type/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/css/type/index.md -------------------------------------------------------------------------------- /src/data/document/character-encoding/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/document/character-encoding/bad.md -------------------------------------------------------------------------------- /src/data/document/character-encoding/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/document/character-encoding/good.md -------------------------------------------------------------------------------- /src/data/document/character-encoding/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/document/character-encoding/index.md -------------------------------------------------------------------------------- /src/data/document/encoding/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/document/encoding/bad.md -------------------------------------------------------------------------------- /src/data/document/encoding/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/document/encoding/good.md -------------------------------------------------------------------------------- /src/data/document/encoding/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/document/encoding/index.md -------------------------------------------------------------------------------- /src/data/form/input-type/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/form/input-type/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/form/input-type/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/form/input-type/index.md -------------------------------------------------------------------------------- /src/data/general/indentation/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/general/indentation/bad.md -------------------------------------------------------------------------------- /src/data/general/indentation/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/general/indentation/good.md -------------------------------------------------------------------------------- /src/data/general/indentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/general/indentation/index.md -------------------------------------------------------------------------------- /src/data/headline/heading-hierarchy/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/headline/heading-hierarchy/bad.md -------------------------------------------------------------------------------- /src/data/headline/heading-hierarchy/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/headline/heading-hierarchy/good.md -------------------------------------------------------------------------------- /src/data/headline/heading-hierarchy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/headline/heading-hierarchy/index.md -------------------------------------------------------------------------------- /src/data/image/alt-attribute/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/image/alt-attribute/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/image/alt-attribute/good.md -------------------------------------------------------------------------------- /src/data/image/alt-attribute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/image/alt-attribute/index.md -------------------------------------------------------------------------------- /src/data/image/dimensions/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/image/dimensions/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/image/dimensions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/image/dimensions/index.md -------------------------------------------------------------------------------- /src/data/javascript/event-handlers/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/event-handlers/bad.md -------------------------------------------------------------------------------- /src/data/javascript/event-handlers/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/event-handlers/good.md -------------------------------------------------------------------------------- /src/data/javascript/event-handlers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/event-handlers/index.md -------------------------------------------------------------------------------- /src/data/javascript/external-files/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/external-files/bad.md -------------------------------------------------------------------------------- /src/data/javascript/external-files/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/external-files/good.md -------------------------------------------------------------------------------- /src/data/javascript/external-files/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/external-files/index.md -------------------------------------------------------------------------------- /src/data/javascript/type/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/type/bad.md -------------------------------------------------------------------------------- /src/data/javascript/type/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/type/good.md -------------------------------------------------------------------------------- /src/data/javascript/type/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/javascript/type/index.md -------------------------------------------------------------------------------- /src/data/link/protocol/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/link/protocol/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/link/protocol/good.md -------------------------------------------------------------------------------- /src/data/link/protocol/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/link/protocol/index.md -------------------------------------------------------------------------------- /src/data/selector/id-class/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 |
3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/selector/id-class/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/selector/id-class/good.md -------------------------------------------------------------------------------- /src/data/selector/id-class/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/selector/id-class/index.md -------------------------------------------------------------------------------- /src/data/string/quotation-marks/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | Link 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/string/quotation-marks/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | Link 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/string/quotation-marks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/string/quotation-marks/index.md -------------------------------------------------------------------------------- /src/data/tag/closing-tag/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/closing-tag/bad.md -------------------------------------------------------------------------------- /src/data/tag/closing-tag/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/closing-tag/good.md -------------------------------------------------------------------------------- /src/data/tag/closing-tag/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/closing-tag/index.md -------------------------------------------------------------------------------- /src/data/tag/empty/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/tag/empty/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | Home 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/tag/empty/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/empty/index.md -------------------------------------------------------------------------------- /src/data/tag/newline/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/newline/bad.md -------------------------------------------------------------------------------- /src/data/tag/newline/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/newline/good.md -------------------------------------------------------------------------------- /src/data/tag/newline/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/newline/index.md -------------------------------------------------------------------------------- /src/data/tag/self-closing/bad.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/tag/self-closing/good.md: -------------------------------------------------------------------------------- 1 | ```html 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /src/data/tag/self-closing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/self-closing/index.md -------------------------------------------------------------------------------- /src/data/tag/tag-case/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/tag-case/bad.md -------------------------------------------------------------------------------- /src/data/tag/tag-case/good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/tag-case/good.md -------------------------------------------------------------------------------- /src/data/tag/tag-case/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/data/tag/tag-case/index.md -------------------------------------------------------------------------------- /src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/hooks/index.tsx -------------------------------------------------------------------------------- /src/hooks/site-metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/hooks/site-metadata.tsx -------------------------------------------------------------------------------- /src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/images/favicon.png -------------------------------------------------------------------------------- /src/layouts/Default/Default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/layouts/Default/Default.tsx -------------------------------------------------------------------------------- /src/layouts/Default/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/layouts/Default/index.ts -------------------------------------------------------------------------------- /src/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/layouts/index.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /static/googleb71e0a1ab44fbe42.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/static/googleb71e0a1ab44fbe42.html -------------------------------------------------------------------------------- /static/images/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/static/images/html5.svg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcobiedermann/html-style-guide/HEAD/tsconfig.json --------------------------------------------------------------------------------