import { stripIndent } from 'common-tags'; import { get } from '../util/ajax.js'; const cached = {}; function walkFetchEmbed({ embedTokens, compile, fetch }, cb) { let token; let step = 0; let count = 0; if (!embedTokens.length) { return cb({}); } while ((token = embedTokens[step++])) { const currentToken = token; // eslint-disable-next-line no-loop-func const next = text => { let embedToken; if (text) { if (currentToken.embed.type === 'markdown') { let path = currentToken.embed.url.split('/'); path.pop(); path = path.join('/'); // Resolves relative links to absolute text = text.replace(/\[([^[\]]+)\]\(([^)]+)\)/g, x => { const linkBeginIndex = x.indexOf('('); if (x.slice(linkBeginIndex, linkBeginIndex + 2) === '(.') { return ( x.substring(0, linkBeginIndex) + `(${window.location.protocol}//${window.location.host}${path}/` + x.substring(linkBeginIndex + 1, x.length - 1) + ')' ); } return x; }); // This may contain YAML front matter and will need to be stripped. const frontMatterInstalled = ($docsify.frontMatter || {}).installed || false; if (frontMatterInstalled === true) { text = $docsify.frontMatter.parseMarkdown(text); } embedToken = compile.lexer(text); } else if (currentToken.embed.type === 'code') { if (currentToken.embed.fragment) { const fragment = currentToken.embed.fragment; const pattern = new RegExp( `(?:###|\\/\\/\\/)\\s*\\[${fragment}\\]([\\s\\S]*)(?:###|\\/\\/\\/)\\s*\\[${fragment}\\]`, ); text = stripIndent((text.match(pattern) || [])[1] || '').trim(); } embedToken = compile.lexer( '```' + currentToken.embed.lang + '\n' + text.replace(/`/g, '@DOCSIFY_QM@') + '\n```\n', ); } else if (currentToken.embed.type === 'mermaid') { embedToken = [ { type: 'html', text: /* html */ `