I\'m trying to parse out content from specific meta tags. Here\'s the structure of the meta tags. The first two are closed with a backslash, but the rest don\'t have any clo
soup3 = BeautifulSoup(page3, 'html5lib')
xhtml requires the meta tag to be closed properly, html5 does not. The html5lib parser is more "permissive".