详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
35 lines
971 B
JavaScript
35 lines
971 B
JavaScript
/**
|
|
* @fileoverview XML character escaper
|
|
* @author George Chung
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Returns the escaped value for a character
|
|
* @param {string} s string to examine
|
|
* @returns {string} severity level
|
|
* @private
|
|
*/
|
|
module.exports = function(s) {
|
|
return (`${s}`).replace(/[<>&"'\x00-\x1F\x7F\u0080-\uFFFF]/gu, c => { // eslint-disable-line no-control-regex -- Converting controls to entities
|
|
switch (c) {
|
|
case "<":
|
|
return "<";
|
|
case ">":
|
|
return ">";
|
|
case "&":
|
|
return "&";
|
|
case "\"":
|
|
return """;
|
|
case "'":
|
|
return "'";
|
|
default:
|
|
return `&#${c.charCodeAt(0)};`;
|
|
}
|
|
});
|
|
};
|