Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 422 Bytes

block-lang.md

File metadata and controls

24 lines (15 loc) · 422 Bytes

Pattern: Malformed use of lang

Issue: -

Description

Disallows the use of languages other than those available in the your application for the lang attribute of block elements.

Examples

<!-- ✓ GOOD -->
<script lang="ts">
</script>


<!-- ✗ BAD -->
<script>
</script>

Further Reading