Skip to content

Instantly share code, notes, and snippets.

@bedney
Created May 26, 2021 19:56
Show Gist options
  • Save bedney/c84d63b12284caffa3539a56c4b59bda to your computer and use it in GitHub Desktop.
Save bedney/c84d63b12284caffa3539a56c4b59bda to your computer and use it in GitHub Desktop.
Stylelint - should recognize namespace
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
@namespace foo url("http://www.foo.com");
foo|bar {
color: red;
}
</style>
</head>
<body xmlns:foo="http://www.foo.com">
<foo:bar>This should be red</foo:bar>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment