decruft 0.1.2

Extract clean, readable content from web pages
Documentation
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8"/>
  <title>Loose footnotes: heading delimiter</title>
</head>
<body>
  <!--
    Pattern: inline <sup>N</sup> references in body, definitions after a
    heading whose text is "Notes" (or "Footnotes", "Endnotes", "References").
  -->
  <article>
    <h1>Loose footnotes: heading delimiter</h1>

    <p>The first observation is notable.<sup>1</sup></p>

    <p>The second finding contradicts it.<sup>2</sup></p>

    <p>Both deserve further study.</p>

    <h2>Notes</h2>

    <p><sup>1</sup> First note with supporting detail.</p>

    <p><sup>2</sup> Second note with additional context.</p>

  </article>
</body>
</html>