|
| 1 | +const DocsSidebarNavigation = require('./docs-sidebar.js') |
| 2 | + |
| 3 | +const fs = require ('fs-extra') |
| 4 | +const path = require('path') |
| 5 | +// const CopyWebpackPlugin = require('copy-webpack-plugin') |
| 6 | + |
| 7 | +const HighlightDsl = require('./highlight-dsl') |
| 8 | +const HighlightRules = require('./highlight-rules') |
| 9 | + |
| 10 | +const base = process.env.OH_DOCS_VERSION ? `/v${process.env.OH_DOCS_VERSION}/` : '/' |
| 11 | + |
| 12 | +module.exports = { |
| 13 | + title: 'Documentation Preview', |
| 14 | + description: 'This is a preview of the main parts of the documentation, found in the openhab/openhab-docs repository', |
| 15 | + dest: 'vuepress', |
| 16 | + host: 'localhost', |
| 17 | + base, |
| 18 | + shouldPrefetch: () => false, |
| 19 | + head: [ |
| 20 | + ['link', { rel: 'stylesheet', href: `/fonts/fonts.css` }], |
| 21 | + ['link', { rel: 'icon', href: `/favicon.ico` }], |
| 22 | + ['link', { rel: 'shortcut icon', href: `/favicon.ico` }], |
| 23 | + ['link', { rel: 'apple-touch-icon', href: `/apple-icon.png` }], |
| 24 | + // ['link', { rel: 'stylesheet', href: `https://fonts.googleapis.com/css?family=Open+Sans:300,400` }], |
| 25 | + ['meta', { property: 'og:type', content: 'website' }], |
| 26 | + ['meta', { property: 'og:image', content: 'https://www.openhab.org/og-image.png' }], |
| 27 | + // ['meta', { property: 'og:title', content: 'openHAB' }], |
| 28 | + // ['meta', { property: 'og:description', content: 'a vendor and technology agnostic open source automation software for your home' }], |
| 29 | + // ['script', { src: `https://identity.netlify.com/v1/netlify-identity-widget.js` }] |
| 30 | + ], |
| 31 | + markdown: { |
| 32 | + config: (md) => { |
| 33 | + md.options.linkify = true |
| 34 | + const highlight = md.options.highlight |
| 35 | + md.options.highlight = (str, lang) => { |
| 36 | + /* Simple heuristics to detect rules & other openHAB DSL code snippets and override the language */ |
| 37 | + if (str.match(/\b(?:Color|Contact|Dimmer|Group|Number|Player|Rollershutter|Switch|Location|Frame|Default|Text|Group|Selection|Setpoint|Slider|Colorpicker|Chart|Webview|Mapview|Image|Video|Item|Thing|Bridge|Time|Type|Sitemap|sitemap)\b/)) { |
| 38 | + lang = 'dsl' |
| 39 | + } |
| 40 | + if (str.match(/\b(?:String|DateTime)\b/) && lang !== 'java' && lang !== 'xml') { |
| 41 | + lang = 'dsl' |
| 42 | + } |
| 43 | + if ((str.match(/\brule\b/) && str.match(/\bwhen\b/) && str.match(/\bthen\b/) && str.match(/\bend\b/)) || |
| 44 | + str.match(/received update/) || str.match(/changed.*(?:from|to)/) || str.match(/Channel.*triggered/) || |
| 45 | + str.match(/\bval\b/) || str.match(/\bvar\b/) /* <-- dangerous! */) { |
| 46 | + |
| 47 | + if (lang !== 'nginx' && lang !== 'shell') lang = 'rules' |
| 48 | + } |
| 49 | + if (lang === 'shell' || lang === 'sh' || lang === 'shell_session') lang = 'bash' |
| 50 | + if (lang === 'conf') lang = 'dsl' |
| 51 | + if (lang === 'JSON') lang = 'json' |
| 52 | + // if (lang === 'xtend' || lang === 'text' || !lang) { |
| 53 | + // console.log('Cannot determine language of code: ' + lang) |
| 54 | + // console.log(str) |
| 55 | + // } |
| 56 | + |
| 57 | + if (!Prism.languages.dsl || !Prism.languages.rules) { |
| 58 | + Prism.languages.dsl = HighlightDsl |
| 59 | + Prism.languages.rules = HighlightRules |
| 60 | + } |
| 61 | + |
| 62 | + return highlight(str, lang) |
| 63 | + } |
| 64 | + } |
| 65 | + }, |
| 66 | + // configureWebpack: (config, isServer) => { |
| 67 | + // config.plugins.push(new CopyWebpackPlugin([ |
| 68 | + // { from: '.vuepress/_redirects', to: '.'}, |
| 69 | + // { from: '.vuepress/_headers', to: '.'}, |
| 70 | + // ])) |
| 71 | + // }, |
| 72 | + serviceWorker: false, |
| 73 | + themeConfig: { |
| 74 | + logo: `/openhab-logo.png`, |
| 75 | + // repo: 'openhab', |
| 76 | + editLinks: false, |
| 77 | + activeHeaderLinks: false, |
| 78 | + sidebarDepth: 0, |
| 79 | + docsDir: 'docs', |
| 80 | + nav: [ |
| 81 | + { |
| 82 | + text: 'Documentation', |
| 83 | + link: '/docs/', |
| 84 | + }, |
| 85 | + { |
| 86 | + text: 'GitHub', |
| 87 | + link: 'https://github.com/openhab/openhab-docs', |
| 88 | + } |
| 89 | + ], |
| 90 | + sidebar: { |
| 91 | + '/docs/': DocsSidebarNavigation.filter((s, i) => s.title !== 'Concepts') |
| 92 | + } |
| 93 | + } |
| 94 | +} |
0 commit comments