python/mhtml_to_json.py [50:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    upvote_count = find_itemprop(node, "upvoteCount")
    if upvote_count is not None:
        if upvote_count.tag == "meta":
            upvote_count = upvote_count.get("content")
        else:
            upvote_count = upvote_count.text
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/mhtml_to_json.py [115:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    upvote_count = find_itemprop(node, "upvoteCount")
    if upvote_count is not None:
        if upvote_count.tag == "meta":
            upvote_count = upvote_count.get("content")
        else:
            upvote_count = upvote_count.text
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



