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

fix issues link references and prototypes #1299

Merged
merged 1 commit into from
Jun 30, 2018

Commits on Jun 28, 2018

  1. fix issues link references and prototypes

    Link with names that clashed with properties inherited from the
    Object prototype (such as "constructor") were not expanding. This fixes
    this issue.
    
    Before this change, markdown of this form...:
    
        Link: [constructor][].
    
        [constructor]: https://example.org/
    
    ...resulted in HTML output of this form:
    
        <p>Link: [constructor][].</p>
    
    With this change, it now renders as expected:
    
        <p>Link: <a href="https://example.org/">constructor</a>.</p>
    Trott committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    04e04b1 View commit details
    Browse the repository at this point in the history