27 lines
547 B
JavaScript
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];
|
|
});
|
|
}
|
|
|