import marked from 'marked' import Prism from 'prismjs' import {helper as helperTpl, tree as treeTpl} from './tpl' import {genTree} from './gen-tree' import {slugify} from './slugify' import {emojify} from './emojify' import {isAbsolutePath, getPath, getParentPath} from '../router/util' import {isFn, merge, cached, isPrimitive} from '../util/core' const cachedLinks = {} export function getAndRemoveConfig(str = '') { const config = {} if (str) { str = str .replace(/:([\w-]+)=?([\w-]+)?/g, (m, key, value) => { config[key] = (value && value.replace(/"/g, '')) || true return '' }) .trim() } return {str, config} } const compileMedia = { markdown(url) { return { url } }, iframe(url, title) { return { code: `` } }, video(url, title) { return { code: `` } }, audio(url, title) { return { code: `` } }, code(url, title) { let lang = url.match(/\.(\w+)$/) lang = title || (lang && lang[1]) if (lang === 'md') { lang = 'markdown' } return { url, lang } } } export class Compiler { constructor(config, router) { this.config = config this.router = router this.cacheTree = {} this.toc = [] this.linkTarget = config.externalLinkTarget || '_blank' this.contentBase = router.getBasePath() const renderer = this._initRenderer() let compile const mdConf = config.markdown || {} if (isFn(mdConf)) { compile = mdConf(marked, renderer) } else { marked.setOptions( merge(mdConf, { renderer: merge(renderer, mdConf.renderer) }) ) compile = marked } this._marked = compile this.compile = cached(text => { let html = '' if (!text) { return text } if (isPrimitive(text)) { html = compile(text) } else { html = compile.parser(text) } html = config.noEmoji ? html : emojify(html) slugify.clear() return html }) } compileEmbed(href, title) { const {str, config} = getAndRemoveConfig(title) let embed title = str if (config.include) { if (!isAbsolutePath(href)) { href = getPath( process.env.SSR ? '' : this.contentBase, getParentPath(this.router.getCurrentPath()), href ) } let media if (config.type && (media = compileMedia[config.type])) { embed = media.call(this, href, title) embed.type = config.type } else { let type = 'code' if (/\.(md|markdown)/.test(href)) { type = 'markdown' } else if (/\.html?/.test(href)) { type = 'iframe' } else if (/\.(mp4|ogg)/.test(href)) { type = 'video' } else if (/\.mp3/.test(href)) { type = 'audio' } embed = compileMedia[type].call(this, href, title) embed.type = type } return embed } } _matchNotCompileLink(link) { const links = this.config.noCompileLinks || [] for (var i = 0; i < links.length; i++) { const n = links[i] const re = cachedLinks[n] || (cachedLinks[n] = new RegExp(`^${n}$`)) if (re.test(link)) { return link } } } _initRenderer() { const renderer = new marked.Renderer() const {linkTarget, router, contentBase} = this const _self = this const origin = {} /** * Render anchor tag * @link https://github.com/chjj/marked#overriding-renderer-methods */ origin.heading = renderer.heading = function (text, level) { const nextToc = {level, title: text} if (/{docsify-ignore}/g.test(text)) { text = text.replace('{docsify-ignore}', '') nextToc.title = text nextToc.ignoreSubHeading = true } if (/{docsify-ignore-all}/g.test(text)) { text = text.replace('{docsify-ignore-all}', '') nextToc.title = text nextToc.ignoreAllSubs = true } const slug = slugify(text) const url = router.toURL(router.getCurrentPath(), {id: slug}) nextToc.slug = url _self.toc.push(nextToc) return `${text}` } // Highlight code origin.code = renderer.code = function (code, lang = '') { code = code.replace(/@DOCSIFY_QM@/g, '`') const hl = Prism.highlight( code, Prism.languages[lang] || Prism.languages.markup ) return `
${hl}
` } origin.link = renderer.link = function (href, title = '', text) { let attrs = '' const {str, config} = getAndRemoveConfig(title) title = str if ( !/:|(\/{2})/.test(href) && !_self._matchNotCompileLink(href) && !config.ignore ) { if (href === _self.config.homepage) { href = 'README' } href = router.toURL(href, null, router.getCurrentPath()) } else { attrs += ` target="${linkTarget}"` } if (config.target) { attrs += ' target=' + config.target } if (config.disabled) { attrs += ' disabled' href = 'javascript:void(0)' } if (title) { attrs += ` title="${title}"` } return `${text}` } origin.paragraph = renderer.paragraph = function (text) { let result if (/^!>/.test(text)) { result = helperTpl('tip', text) } else if (/^\?>/.test(text)) { result = helperTpl('warn', text) } else { result = `

${text}

` } return result } origin.image = renderer.image = function (href, title, text) { let url = href let attrs = '' const {str, config} = getAndRemoveConfig(title) title = str if (config['no-zoom']) { attrs += ' data-no-zoom' } if (title) { attrs += ` title="${title}"` } if (!isAbsolutePath(href)) { url = getPath(contentBase, getParentPath(router.getCurrentPath()), href) } return `${text}` } const CHECKED_RE = /^\[([ x])\] +/ origin.listitem = renderer.listitem = function (text) { const checked = CHECKED_RE.exec(text) if (checked) { text = text.replace( CHECKED_RE, `` ) } return `${text}\n` } renderer.origin = origin return renderer } /** * Compile sidebar */ sidebar(text, level) { const currentPath = this.router.getCurrentPath() let html = '' if (text) { html = this.compile(text) html = html && html.match(/]*>([\s\S]+)<\/ul>/g)[0] } else { const tree = this.cacheTree[currentPath] || genTree(this.toc, level) html = treeTpl(tree, '