obj = (
    "<html>\n"
    "<head><title>Dashboard</title></head>\n"
    "<body>\n"
    '  <nav><a href="/home">Home</a><a href="/reports">Reports</a></nav>\n'
    '  <div class="content">\n'
    "    <h1>Quarterly Report</h1>\n"
    "    <table><tr><th>Q</th><th>Revenue</th></tr>"
    "<tr><td>Q1</td><td>1.2M</td></tr></table>\n"
    "  </div>\n"
    "</body>\n"
    "</html>"
)

import pretty_little_summary as pls
result = pls.describe(obj)
print(result.content)
