Пример #1
0
 @NotNull
 private static String escapeHtml(@NotNull String srcPath, @NotNull String input) {
   return UtilGlobal.replaceSilently(
       input, "&", "&amp;", "\"", "&quot;", "<", "&lt;", ">", "&gt;", "\n", "<br/>", "\t",
       "&emsp;");
 }