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

Support crossref of methods with multiple arguments #871

Merged
merged 1 commit into from
Mar 9, 2022

Commits on Mar 8, 2022

  1. Support crossref of methods with multiple arguments

    For example, consider the following markup:
    
      C1#m(a, b)
    
    Before this patch, it generated this HTML:
    
      <p><a href=\"C1.html#method-i-m\"><code>C1#m</code></a>(a, b)</p>
    
    Which places the method arguments outside of the link.
    
    Now it generates this HTML:
    
      <a href=\"C1.html#method-i-m\"><code>C1#m(a, b)</code></a>
    peterzhu2118 committed Mar 8, 2022
    Configuration menu
    Copy the full SHA
    05a2b22 View commit details
    Browse the repository at this point in the history