Skip to content
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

Update README.md #204

Merged
merged 1 commit into from Sep 30, 2022
Merged

Update README.md #204

merged 1 commit into from Sep 30, 2022

Commits on Sep 29, 2022

  1. Update README.md

    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>
    ```
    tnhu committed Sep 29, 2022
    Copy the full SHA
    fd9de78 View commit details
    Browse the repository at this point in the history