Files
2019-05-22 19:49:35 +08:00

27 lines
547 B
JavaScript

var CONFIG = {
// your website's title
document_title: "旋元佑进阶文法",
// index page
index: "README.md",
// sidebar file
sidebar_file: "sidebar.md",
// where the docs are actually stored on github - so you can edit
base_url: "https://github.com/codeyu/EnglishGrammarBook/edit/master",
};
// **************************
// DON'T EDIT FOLLOWING CODES
// **************************
addConfig(ditto, CONFIG);
function addConfig(obj, conf) {
Object.keys(conf).forEach(function (key) {
obj[key] = conf[key];
});
}