
* fix(html): handle 'address' tag Signed-off-by: Cesar Berrospi Ramis <75900930+ceberam@users.noreply.github.com> * fix(html): handle 'details' tag Signed-off-by: Cesar Berrospi Ramis <75900930+ceberam@users.noreply.github.com> --------- Signed-off-by: Cesar Berrospi Ramis <75900930+ceberam@users.noreply.github.com>
17 lines
476 B
HTML
Vendored
17 lines
476 B
HTML
Vendored
<html>
|
|
<head>
|
|
<title>Sample HTML File</title>
|
|
</head>
|
|
<body>
|
|
<div>This is a div with text.</div>
|
|
<div>This is another div with text.</div>
|
|
<p>This is a regular paragraph.</p>
|
|
<div>This is a third div<br/>with a new line.</div>
|
|
<details>
|
|
<summary>Heading for the details element</summary>
|
|
<p>Description of the details element.</p>
|
|
</details>
|
|
<div><p>This is a fourth div with a <b>bold</b> paragraph.</p></div>
|
|
</body>
|
|
</html>
|