- var algolia = 'undefined'; var env = process.env; if (theme.algolia_search.enable) { algolia = JSON.stringify({ appId: env.ALGOLIA_APP_ID || config.algolia.appId || config.algolia.applicationID, apiKey: env.ALGOLIA_API_KEY || config.algolia.apiKey, indexName: env.ALGOLIA_INDEX_NAME || config.algolia.indexName, hits: theme.algolia_search.hits, // search languages languages: { input_placeholder: _p("algolia_search.input_placeholder"), hits_empty: _p("algolia_search.hits_empty"), hits_stats: _p("algolia_search.hits_stats") } }) } var localSearch = 'undefined'; if (theme.local_search && theme.local_search.enable) { localSearch = JSON.stringify({ path: config.search.path, languages: { // search languages hits_empty: _p("local_search.hits_empty") } }) } var translate = 'undefined'; if (theme.translate && theme.translate.enable){ translate = JSON.stringify({ defaultEncoding: theme.translate.defaultEncoding, translateDelay: theme.translate.translateDelay, cookieDomain: theme.translate.cookieDomain, msgToTraditionalChinese: theme.translate.msgToTraditionalChinese, msgToSimplifiedChinese: theme.translate.msgToSimplifiedChinese }) } var copyright = 'undefined' ; if (theme.copy.enable && theme.copy.copyright){ copyright = JSON.stringify({ languages: { author: _p("copy_copyright.author") + ': ' + config.author, link: _p("copy_copyright.link") + ': ' + without_html, source: _p("copy_copyright.source") + ': ' + config.title, info: _p("copy_copyright.info") } }) } var copy_copyright_js = theme.copy.enable && theme.copy.copyright script. var GLOBAL_CONFIG = { root: '!{config.root}', algolia: !{algolia}, localSearch: !{localSearch}, translate: !{translate}, highlight_copy: '!{theme.highlight_copy}', highlight_lang: '!{theme.highlight_lang}', highlight_shrink: '!{theme.highlight_shrink}', copy: { success: '!{_p("copy.success")}', error: '!{_p("copy.error")}', noSupport: '!{_p("copy.noSupport")}' }, bookmark: { title: '!{_p("bookmark.title")}', message_prev: '!{_p("bookmark.message_prev")}', message_next: '!{_p("bookmark.message_next")}' }, runtime_unit: '!{_p("runtime_unit")}', copyright: !{copyright}, copy_copyright_js: !{copy_copyright_js} }