Updated src/ALL.md.

This commit is contained in:
Hector PENG
2025-01-10 09:14:08 +08:00
parent bdfaaa532a
commit a6e41c5f11
2 changed files with 13 additions and 0 deletions

View File

@@ -6,6 +6,10 @@ src = "src"
title = "又一本 Jenkins 书。"
description = "又一本 Jenkins 书Yet another Chinese Jenkins book。"
[preprocessor.last-changed]
command = "mdbook-last-changed"
renderer = ["html"]
[preprocessor.pagetoc]
[output.html]
additional-css = ["theme/pagetoc.css"]

View File

@@ -65,3 +65,12 @@ if(document.querySelector("#document-not-found404")) {
}
}, 1000);
}
var f = document.getElementById("last-change");
if (f) {
var text = f.innerHTML;
text = text.replace("Last change", "知识共享许可协议CC - 最后修改")
text = text.replace("commit", "于提交")
f.innerHTML = text
}