diff --git a/L014-1-impurities.html b/L014-1-impurities.html
new file mode 100644
index 0000000..cd5afe3
--- /dev/null
+++ b/L014-1-impurities.html
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+ L014-1 相关物质计算
+
+
+
+
+
+
+
+
+
+ L014-1 相关物质计算
+ * 此功能未经详细测试,计算结果仅供参考。
+
+
+ 12
+
+
+ 第一组
+
+
+
+
+
+
+
+
+ 第二组
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
index f34de50..f87f51e 100644
--- a/index.html
+++ b/index.html
@@ -34,6 +34,10 @@
{
"name": "L414-5KR 相关物质计算",
"location": "./L414-5KR-impurities.html"
+ },
+ {
+ "name": "L014-1 相关物质计算",
+ "location": "./L014-1-impurities.html"
}
];
@@ -53,6 +57,7 @@
data.forEach(element => {
let hash = element.sha.slice(0, 7)
let verified = element.commit.verification.verified
+ let html_url = element.html_url
// 处理换行和+号
let message = element.commit.message.replaceAll("\n", "
");
@@ -65,9 +70,14 @@
date = new Date(+ new Date(date) + 28800000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '')
changeColor = !changeColor
+ let header = `
+ ${date}
+ (${hash}${verified ? ", Verified" : ""})`
+
let msg = `
- ${date} (${hash}${verified ? ", Verified" : ""}) ${message}
+ ${header}
+ ${message}
`
$(".changelog").append(msg);
});