You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix a bug in `Disable Header links` example section.
Given a heading:
```
# A demo of `react-markdown`
```
Example will yield:
```
<h1>A demo of</h1>
```
Which is not correct, the text `react-markdown` is ignored.
Withe the fix, example will yield correct output:
```
<h1>A demo of <code>react-markdown</code></h1>
```
0 commit comments