Some external functions / classes don't resolve into links
See original GitHub issueFor example, in this example in the sphinx-gallery gallery, np.linspace
does not become a link, but all other numpy functions do.
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
c++ - Do classes have external linkage? - Stack Overflow
The correct answer is yes, the name of a class may have external linkage. The previous answers are wrong and misleading. The code...
Read more >Shared library stopped working when external functions were ...
I am having trouble creating a shared library that I want to use in Python, and this problem appears when I call functions...
Read more >Linker Tools Error LNK2001 - Microsoft Learn
This error is common when you declare, but don't define, variables, functions, or classes in your code. The compiler only needs a function...
Read more >Automatic link generation - Doxygen Manual
Doxygen will automatically replace any URLs and mail addresses found in the documentation by links (in HTML). To manually specify link text, use...
Read more >Calling external functions in App Designer - MATLAB Answers
For a final project in a MATLAB class, we're required to create a modular program using App Designer to plot data points. We've...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m trying to fix this issue too. Here is where I am.
For the example, the code in docs_resolv.py behaves like this snippet:
which prints:
In
expr
, word boundary\b
apply only to firstname
of thenames
list. As\b
does not matches<
(first character inname
), valuename
is not replaced to add<a href
The regular expression seems to want to work on something like
np.linspace
, where(?<!\.)
prevent matchingxxx.np.linspace
, and\b
to prevent matchingxxxnp.linspace
.However, the regular expression is not used on something like
np.linspace
, but on:Thanks!