pure/site/components/SectionHeader.js
2020-05-16 11:09:14 -07:00

19 lines
552 B
JavaScript

import React from 'react';
function SectionHeader({ heading, TagName = 'h2' }) {
// Remove HTML entities, and all chars except whitespace, word chars, and from the `heading`.
const id = heading.toLowerCase()
.replace(/&[^\s;]+;?/g, '')
.replace(/[^\s\w-]+/g, '')
.replace(/\s+/g, '-');
return (
<TagName id={id} className="content-subhead">
{heading}
<a href={`#${id}`} className="content-link" title="Heading anchor"></a>
</TagName>
);
}
export default SectionHeader;