瀏覽代碼

Merge branch 'fix/htmlEncode' of node/npmcomment into master

node 5 年之前
父節點
當前提交
63d9a5d9fb
共有 1 個檔案被更改,包括 14 行新增1 行删除
  1. 14
    1
      src/helper.js

+ 14
- 1
src/helper.js 查看文件

@@ -26,13 +26,26 @@ export function arrayToObject(array, keyField) {
26 26
   }, {});
27 27
 }
28 28
 
29
+/**
30
+ * HTML 编码
31
+ * 将 < > 等字符串进行编码
32
+ * @param {string} str 文本
33
+ */
34
+export function htmlEncode(str) {
35
+  if (!str) return "";
36
+  // /[\u00A0-\u9999<>\&]/gim  // 中文和 HTML 字符
37
+  return str.replace(/[<>\&]/gim, function(i) {
38
+    return "&#" + i.charCodeAt(0) + ";";
39
+  });
40
+}
41
+
29 42
 /**
30 43
  * 渲染编辑器
31 44
  * [x] => <img src="x" />
32 45
  * @param {strig} content
33 46
  */
34 47
 export function renderContent(content, onClick) {
35
-  return content.replace(REGEXP, function(a, b) {
48
+  return htmlEncode(content).replace(REGEXP, function(a, b) {
36 49
     const src = a.slice(1, -1);
37 50
     if (isUrl(src)) {
38 51
       return `<img src="${src}" alt="${src}" style="max-width: 300px" />`;