Try pre instead of escaping

This commit is contained in:
Paul W. 2024-10-02 23:03:16 -04:00
parent 13f7f8580e
commit 2324469478
Signed by: lambdapaul
GPG Key ID: 0D207B4EBC14B1BD

View File

@ -37,25 +37,26 @@
}
}
```
<html>
<head>
<title>HTML Title</title>
</head>
<body>
<div class="container">
<div class="article">
<h1>Hello, world!</h1>
<h6>Goodbye, world!</h6>
<div aria-data="idk!">Yo, what's up!</div>
<div>
<a href="http://google.com">don't be eeeviiiilll</a>
<a class="button" href="">This link has a class called 'button'</a>
</div>
</div>
<img class="img" alt="green texture" src="background.png">
<div class="hello" id="lol"></div>
<pre>
<html>
<head>
<title>HTML Title</title>
</head>
<body>
<div class="container">
<div class="article">
<h1>Hello, world!</h1>
<h6>Goodbye, world!</h6>
<div aria-data="idk!">Yo, what's up!</div>
<div>
<a href="http://google.com">don't be eeeviiiilll</a>
<a class="button" href="">This link has a class called 'button'</a>
</div>
</div>
<img class="img" alt="green texture" src="background.png">
<div class="hello" id="lol"></div>
Random text
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</div>
</body>
</html>
</pre>