UNPKG
text-automation
Version:
latest (1.0.1)
1.0.1
1.0.0
html转译 富文本单个空格 删除空格
text-automation
/
html-text
/
html.js
14 lines
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// html转译
function
html_label
(
label
) {
return
label.
replace
(
/<|>/g
,
(
match
) =>
{
switch
(match) {
case
'>'
:
return
'>'
case
'<'
:
return
'<'
} }) }
module
.
exports
={ html_label }