htmlToTex
Posted 朝歌晚酒ii
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htmlToTex相关的知识,希望对你有一定的参考价值。
public htmlToText(html: string) {
return html
.replace(/<br>/g, \'\')
.replace(/<p>/g, \'\')
.replace(/<\\/p>/g, \'\')
.replace(/<\\s*b[^>]*>/g, \'\')
.replace(/<\\/\\s*b[^>]*>/g, \'\')
.replace(/<\\s*font[^>]*>/g, \'\')
.replace(/<\\/\\s*font[^>]*>/g, \'\')
.replace(/<\\s*div[^>]*>/g, \'\')
.replace(/<\\/\\s*div[^>]*>/g, \'\')
.replace(/<\\s*span[^>]*>/g, \'\')
.replace(/<\\/\\s*span[^>]*>/g, \'\')
.replace(/<\\s*strong[^>]*>/g, \'\')
.replace(/<\\/\\s*strong[^>]*>/g, \'\')
.replace(/<\\s*em[^>]*>/g, \'\')
.replace(/<\\/\\s*em[^>]*>/g, \'\')
.replace(/<\\s*ul[^>]*>/g, \'\')
.replace(/<\\/\\s*ul[^>]*>/g, \'\')
.replace(/<\\s*li[^>]*>/g, \'\')
.replace(/<\\/\\s*li[^>]*>/g, \'\')
.replace(/<\\s*ol[^>]*>/g, \'\')
.replace(/<\\/\\s*ol[^>]*>/g, \'\')
.replace(/ /g, \'\')
.replace(
/<img\\b[^<>]*?\\bsrc[\\s\\t\\r\\n]*=[\\s\\t\\r\\n]*[""\']?[\\s\\t\\r\\n]*(?<imgUrl>[^\\s\\t\\r\\n""\'<>]*)[^<>]*?>/g,
\'[图片]\',
)
.replace(/<\\s*a[^>]*>/g, \'\')
.replace(/<\\/\\s*a[^>]*>/g, \'\');
}
以上是关于htmlToTex的主要内容,如果未能解决你的问题,请参考以下文章