コード例 #1
0
ファイル: Website.java プロジェクト: rishabh127/docfetcher
 @NotNull
 private static String escapeHtml(@NotNull String srcPath, @NotNull String input) {
   return UtilGlobal.replaceSilently(
       input, "&", "&amp;", "\"", "&quot;", "<", "&lt;", ">", "&gt;", "\n", "<br/>", "\t",
       "&emsp;");
 }