/** * Copyright (c) Facebook, Inc. and its affiliates. */ /*! * Based on 'gatsby-remark-autolink-headers' * Original Author: Kyle Mathews * Updated by Jared Palmer; * 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 = ({ icon = svgIcon, className = `anchor`, maintainCase = false, } = {}) => { slugs.reset(); return function transformer(tree) { visit(tree, 'heading', (node) => { // Support custom-id syntax. const rawHeader = toString(node); const match = /^.+(\s*\{#([a-z0-9\-_]+?)\}\s*)$/.exec(rawHeader); const id = match ? match[2] : slugs.slug(rawHeader, maintainCase); if (match) { // Remove the custom ID part from the text node. const lastNode = node.children[node.children.length - 1]; lastNode.value = lastNode.value.replace(match[1], ''); } 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); }); }; };