encodeEntities

Encode HTML entities and return the resulting string.

alias encodeEntities = _encodeEntitiesImpl!(false,
(
char c
)
=>
c == '<' ||
c == '>'
||
c == '"'
||
c == '\''
||
c == '&'
)

Meta