-
Notifications
You must be signed in to change notification settings - Fork 706
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "id" to headings #709
Add "id" to headings #709
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,23 @@ interface IChartReadmeProps { | |
version: string; | ||
} | ||
|
||
// Code from https://github.com/rexxars/react-markdown/issues/69 | ||
function flatten(text: string, child: any): any { | ||
return typeof child === "string" | ||
? text + child | ||
: React.Children.toArray(child.props.children).reduce(flatten, text); | ||
} | ||
|
||
function HeadingRenderer(props: any) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm I'm not a huge fan of having a Component inline in another component, even though this is small one. @Angelmmiguel what do you think? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree with @prydonius. If the component is specific to another one, I usually keep them in the same folder:
|
||
const children = React.Children.toArray(props.children); | ||
const text = children.reduce(flatten, ""); | ||
const slug = text | ||
.toLowerCase() | ||
.replace(/[^a-zA-Z0-9_\s]/g, "") // remove punctuation | ||
.replace(/\s/g, "-"); // replace spaces with dash | ||
return React.createElement("h" + props.level, { id: slug }, props.children); | ||
} | ||
|
||
class ChartReadme extends React.Component<IChartReadmeProps> { | ||
public componentWillMount() { | ||
const { getChartReadme, version } = this.props; | ||
|
@@ -35,7 +52,7 @@ class ChartReadme extends React.Component<IChartReadmeProps> { | |
<LoadingWrapper loaded={!!readme}> | ||
{readme && ( | ||
<div className="ChartReadme"> | ||
<ReactMarkdown source={readme} /> | ||
<ReactMarkdown source={readme} renderers={{ heading: HeadingRenderer }} /> | ||
</div> | ||
)} | ||
</LoadingWrapper> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we keep this function in this class, we should probably name it better, or instead just have it as an anonymous function in the
.reduce
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved it to a different component file. I prefer to leave it as it is to maintain fidelity to the linked issue.