import { unified } from 'unified' import markdown from 'remark-parse-no-trim' import markdownNext from 'remark-parse' import gfm from 'remark-gfm' import emoji from 'remark-gemoji-to-emoji' import remark2rehype from 'remark-rehype' import raw from 'rehype-raw' import slug from 'rehype-slug' import autolinkHeadings from 'rehype-autolink-headings' import highlight from 'rehype-highlight' import dockerfile from 'highlight.js/lib/languages/dockerfile' import http from 'highlight.js/lib/languages/http' import groovy from 'highlight.js/lib/languages/groovy' import erb from 'highlight.js/lib/languages/erb' import powershell from 'highlight.js/lib/languages/powershell' import html from 'rehype-stringify' import HighlightjsGraphql from 'highlightjs-graphql' import remarkCodeExtra from 'remark-code-extra' import codeHeader from './plugins/code-header.js' import rewriteLocalLinks from './plugins/rewrite-local-links.js' import rewriteImgSources from './plugins/rewrite-asset-urls.js' import useEnglishHeadings from './plugins/use-english-headings.js' import wrapInElement from './plugins/wrap-in-element.js' import doctocatLinkIcon from './doctocat-link-icon.js' const graphql = HighlightjsGraphql.definer // The rewrite-asset-urls plugin is nice because it makes the `` // tags use unique URLs so they can be aggressively cached in the // CDN. But it might not always make sense to bother. For example, in // some CI where you're rendering lots of content and don't care // about aggressive CDN caching at all. E.g. Actions that do link checking // on rendered HTML. const DISABLE_REWRITE_ASSET_URLS = JSON.parse(process.env.DISABLE_REWRITE_ASSET_URLS || 'false') export default function createProcessor(context) { return unified() .use(process.env.COMMONMARK ? markdownNext : markdown) .use(process.env.COMMONMARK ? gfm : null) .use(remarkCodeExtra, { transform: codeHeader }) .use(emoji) .use(remark2rehype, { allowDangerousHtml: true }) .use(slug) .use(useEnglishHeadings, context) .use(autolinkHeadings, { behavior: 'prepend', properties: { ariaHidden: true, tabIndex: -1, class: 'doctocat-link' }, content: doctocatLinkIcon, }) .use(highlight, { languages: { graphql, dockerfile, http, groovy, erb, powershell }, subset: false, }) .use(raw) .use(wrapInElement, { selector: 'ol > li img', wrapper: 'span.procedural-image-wrapper' }) .use(DISABLE_REWRITE_ASSET_URLS ? null : rewriteImgSources) .use(rewriteLocalLinks, { languageCode: context.currentLanguage, version: context.currentVersion, }) .use(html) }