2020-03-29 19:54:28 +08:00
|
|
|
/* global hexo */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const url = require('url');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export theme config to js
|
|
|
|
*/
|
|
|
|
hexo.extend.helper.register('export_config', function() {
|
|
|
|
let { config, theme } = this;
|
|
|
|
let exportConfig = {
|
|
|
|
hostname : url.parse(config.url).hostname || config.url,
|
|
|
|
root : config.root,
|
|
|
|
localsearch: theme.local_search,
|
2020-04-07 11:57:53 +08:00
|
|
|
themeInfo: theme.theme_info
|
2020-03-29 19:54:28 +08:00
|
|
|
};
|
|
|
|
if (config.search) {
|
|
|
|
exportConfig.path = config.search.path;
|
|
|
|
}
|
|
|
|
return `<script id="hexo-configurations">
|
|
|
|
let CONFIG = ${JSON.stringify(exportConfig)};
|
|
|
|
</script>`;
|
|
|
|
});
|