-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxmlformat.js
More file actions
86 lines (85 loc) · 2.21 KB
/
xmlformat.js
File metadata and controls
86 lines (85 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
function formateXml(xmlStr) {
var text = xmlStr;
//使用replace去空格
text =
"\n" +
text
.replace(/(<\w+)(\s.*?>)/g, function ($0, name, props) {
return name + " " + props.replace(/\s+(\w+=)/g, " $1");
})
.replace(/>\s*?</g, ">\n<");
//处理注释
text = text
.replace(/\n/g, "\r")
.replace(/<!--(.+?)-->/g, function ($0, text) {
var ret = "<!--" + escape(text) + "-->";
return ret;
})
.replace(/\r/g, "\n");
//调整格式 以压栈方式递归调整缩进
var rgx =
/\n(<(([^\?]).+?)(?:\s|\s*?>|\s*?(\/)>)(?:.*?(?:(?:(\/)>)|(?:<(\/)\2>)))?)/gm;
var nodeStack = [];
var output = text.replace(
rgx,
function (
$0,
all,
name,
isBegin,
isCloseFull1,
isCloseFull2,
isFull1,
isFull2
) {
var isClosed =
isCloseFull1 == "/" ||
isCloseFull2 == "/" ||
isFull1 == "/" ||
isFull2 == "/";
var prefix = "";
if (isBegin == "!") {
//!开头
prefix = setPrefix(nodeStack.length);
} else {
if (isBegin != "/") {
///开头
prefix = setPrefix(nodeStack.length);
if (!isClosed) {
//非关闭标签
nodeStack.push(name);
}
} else {
nodeStack.pop(); //弹栈
prefix = setPrefix(nodeStack.length);
}
}
var ret = "\n" + prefix + all;
return ret;
}
);
var prefixSpace = -1;
var outputText = output.substring(1);
//还原注释内容
outputText = outputText
.replace(/\n/g, "\r")
.replace(/(\s*)<!--(.+?)-->/g, function ($0, prefix, text) {
if (prefix.charAt(0) == "\r") prefix = prefix.substring(1);
text = unescape(text).replace(/\r/g, "\n");
var ret = "\n" + prefix + "<!--" + text.replace(/^\s*/gm, prefix) + "-->";
return ret;
});
outputText = outputText.replace(/\s+$/g, "").replace(/\r/g, "\r\n");
return outputText;
}
//计算头函数 用来缩进
function setPrefix(prefixIndex) {
var result = "";
var span = " "; //缩进长度
var output = [];
for (var i = 0; i < prefixIndex; ++i) {
output.push(span);
}
result = output.join("");
return result;
}