cursorless/data/playground/html.html
Andreas Arvidsson ff74551c22
Added html language implementation (#385)
* Added html language implementation

* Added additional angle bound

* Added tests

* Updated tests

* Changed order of delimiters

* A de test inside comment

* Added htmlStringTextFragmentExtractor
2021-12-16 19:47:32 +01:00

25 lines
406 B
HTML

<html>
<head>
<link rel="stylesheet" href="./index.css">
<style>
p {
color: red;
font-size: 20px;
}
</style>
<title>
Hello
</title>
</head>
<body>
<script>
</script>
<h1>Title</h1>
<div id="this-is-my-2id" data-a=5>
Hello world
<!-- Comment -->
</div>
<br/>
</body>
</html>