(str)
| 669 | |
| 670 | //判断粘贴的内容是否来自office |
| 671 | function isWordDocument(str) { |
| 672 | return /(class="?Mso|style="[^"]*\bmso\-|w:WordDocument|<(v|o):|lang=)/ig.test(str) || /\"urn:schemas-microsoft-com:office:office/ig.test(str); |
| 673 | } |
| 674 | |
| 675 | //excel表格处理 |
| 676 | function pasteClipboardHtml(html) { |
nothing calls this directly
no outgoing calls
no test coverage detected