/*! * Based on 'gatsby-remark-autolink-headers' * Original Author: Kyle Mathews * Copyright (c) 2015 Gatsbyjs */ const toString = require('mdast-util-to-string'); const visit = require('unist-util-visit'); const slugs = require('github-slugger')(); function patch(context, key, value) { if (!context[key]) { context[key] = value; } return context[key]; } const svgIcon = ``; module.exports = ( {markdownAST}, {icon = svgIcon, className = `anchor`, maintainCase = false}, ) => { slugs.reset(); visit(markdownAST, 'heading', node => { const id = slugs.slug(toString(node), maintainCase); const data = patch(node, 'data', {}); patch(data, 'id', id); patch(data, 'htmlAttributes', {}); patch(data, 'hProperties', {}); patch(data.htmlAttributes, 'id', id); patch(data.hProperties, 'id', id); if (icon !== false) { node.children.unshift({ type: 'link', url: `#${id}`, title: null, data: { hProperties: { 'aria-hidden': true, class: className, }, hChildren: [ { type: 'raw', // The Octicon link icon is the default. But users can set their own icon via the "icon" option. value: icon, }, ], }, }); } }); return markdownAST; };