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: Sphinx generated incorrect type references for display #232

Merged
merged 1 commit into from
Sep 17, 2018

Commits on Sep 17, 2018

  1. fix: Sphinx generated incorrect type references for display

    When rendering a type reference link, the trailing backtick must be followed by
    a non-word character; however the code generated array and union references that
    followed this backtick directly with `[` or `)` respectively. This caused a lot
    of warnings to be emitted by `sphinx-build`, and resulted in incorrect output.
    
    This adds an escaped space (`\ `) after the backticks, which `sphinx-build`
    correctly interprets as a non-word character, but results in no character being
    emitted to the output - thus generating the desired output.
    RomainMuller committed Sep 17, 2018
    Configuration menu
    Copy the full SHA
    6980b97 View commit details
    Browse the repository at this point in the history