(str)
| 699 | |
| 700 | //将html转换为markdown |
| 701 | function html2md(str) { |
| 702 | var gfm = turndownPluginGfm.gfm; |
| 703 | var turndownService = new TurndownService({ |
| 704 | headingStyle: 'atx', |
| 705 | hr: '- - -', |
| 706 | bulletListMarker: '-', |
| 707 | codeBlockStyle: 'fenced', |
| 708 | fence: '```', |
| 709 | emDelimiter: '_', |
| 710 | strongDelimiter: '**' |
| 711 | }); |
| 712 | turndownService.use(gfm); |
| 713 | turndownService.keep(['sub', 'sup']);//保留标签 |
| 714 | str=firstfilter(str); |
| 715 | //str=pasteClipboardHtml(str); |
| 716 | str=filterPasteWord(str); |
| 717 | return turndownService.turndown(str); |
| 718 | } |
| 719 | |
| 720 | //将word转换的html转换为markdown,并插入编辑器 |
| 721 | $("#btnhtml2md").click(function (e) { |
no test coverage detected