Html2Text\Html2Text::isOfficeDocument PHP Method

isOfficeDocument() static public method

Can we guess that this HTML is generated by Microsoft Office?
static public isOfficeDocument ( $html )
    static function isOfficeDocument($html)
    {
        return strpos($html, "urn:schemas-microsoft-com:office") !== false;
    }