mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-27 22:25:54 +10:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
module.exports = html => String(html)
|
|
.replace(/"/g, '"')
|
|
.replace(/'/g, '\'')
|
|
.replace(/:/g, ':')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>')
|
|
|