<!DOCTYPE html>
<html>
<head>
<title>Test HTML Document</title>
<script>
// This script should be removed in markdown
console.log("This should not appear in the output");
</script>
<style>
body { font-family: Arial, sans-serif; }
</style>
</head>
<body>
<h1>Test HTML Document</h1>
<p>This is a <strong>test</strong> document with some <em>emphasized</em> text.</p>
<h2>Features List</h2>
<ul>
<li>Headings</li>
<li>Paragraphs</li>
<li>Formatting (<strong>bold</strong>, <em>italic</em>)</li>
<li>Lists</li>
<li><a href="https://example.com">Links</a></li>
<li>Code blocks</li>
</ul>
<h2>Code Example</h2>
<pre><code>function test() {
console.log("Hello, world!");
return true;
}</code></pre>
<script>
// This inline script should also be removed
document.getElementById("test").innerHTML = "Modified content";
</script>
</body>
</html>