encodeLink function

String encodeLink(
  1. String str
)

Implementation

String encodeLink(String str) {
  // TODO Decode first? Conditionally?
  return HtmlEscape(HtmlEscapeMode(
    escapeApos: true,
    escapeLtGt: true,
    escapeQuot: true,
    escapeSlash: false,
  )).convert(str);
}