From 0ade2ac249fb2ee761fa7f6cd4be085354cb5a89 Mon Sep 17 00:00:00 2001 From: hbk01 <3243430237@qq.com> Date: Tue, 25 Oct 2022 01:36:31 +0800 Subject: [PATCH] =?UTF-8?q?+=20=E4=B8=BB=E9=A1=B5=E5=8F=98=E6=9B=B4?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E4=B8=BA=E6=8F=90=E4=BA=A4=20hash=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=93=BE=E6=8E=A5=20+=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=20L014-1=20=E7=9B=B8=E5=85=B3=E7=89=A9=E8=B4=A8=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- L014-1-impurities.html | 193 +++++++++++++++++++++++++++++++++++++++++ index.html | 12 ++- 2 files changed, 204 insertions(+), 1 deletion(-) create mode 100644 L014-1-impurities.html 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); });