sucher 0.3.0

A fast terminal viewer for files that are awkward in a browser: markdown, spreadsheets, PDF, images, video, docx, pptx, Keynote, archives and binary.
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Sample Page</title>
  <style>body { font-family: sans-serif; }</style>
</head>
<body>
  <h1>Sucher HTML Sample</h1>
  <p>A paragraph with <strong>bold</strong>, <em>italic</em>, inline
     <code>code()</code>, and a <a href="https://example.com">link</a>.</p>

  <h2>A list</h2>
  <ul>
    <li>First item</li>
    <li>Second item
      <ul>
        <li>Nested item</li>
      </ul>
    </li>
  </ul>

  <h2>Ordered</h2>
  <ol>
    <li>Step one</li>
    <li>Step two</li>
  </ol>

  <blockquote>
    <p>A quoted paragraph that spans a thought worth setting apart.</p>
  </blockquote>

  <pre><code>fn main() {
    println!("hello");
}</code></pre>

  <h2>A table</h2>
  <table>
    <thead>
      <tr><th>Name</th><th>Role</th></tr>
    </thead>
    <tbody>
      <tr><td>Ada</td><td>Engineer</td></tr>
      <tr><td>Grace</td><td>Admiral</td></tr>
    </tbody>
  </table>

  <script>console.log("this must not appear");</script>
</body>
</html>