Added links to wiki for EncodeHtml, EncodeJs, EncodeJson and EncodeXml

This commit is contained in:
Erik C. Thauvin 2023-03-18 14:56:19 -07:00
parent 0f62f9cb5b
commit cea371ed31
7 changed files with 16 additions and 36 deletions

View file

@ -51,10 +51,10 @@ public final class RenderUtils {
}
/**
* Encodes a string to JavaScript/ECMAScript.
* Encodes a String to JavaScript/ECMAScript.
*
* @param src the source string
* @return the enocded string
* @param src the source String
* @return the encoded String
*/
public static String encodeJS(String src) {
if (src == null || src.isBlank()) {