UNPKG
hitext
Version:
latest (1.0.0-beta.1)
1.0.0-beta.1
1.0.0-alpha.2
1.0.0-alpha.1
Text decoration done right
github.com/hitext/hitext
hitext/hitext
hitext
/
src
/
printer
/
html.js
9 lines
(7 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
{ createPrinter } =
require
(
'./utils'
);
module
.
exports
=
createPrinter
({
print
:
chunk
=>
chunk .
replace
(
/&/g
,
'&'
) .
replace
(
/</g
,
'<'
) .
replace
(
/>/g
,
'>'
) });