You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have exports.info and also function info() in my code. JSDoc correctly separates them as being static and inner, but i can't link to the second. They both have the same id attribute: info. What probably should be is static-info and inner-info, for all methods, not just conflicts.
The text was updated successfully, but these errors were encountered:
Fixed on master. We now prepend the scope character to the id attribute (except for instance members, since that would result in confusing-looking links like Foo.html##bar). We also ensure that each id attribute is unique within its output file.
For example, here's a list of longnames and the link we generate to each one:
Foo.bar: Foo.html#.bar
Foo~baz: Foo.html#~baz
Foo#qux: Foo.html#qux
Note that HTML5 allows punctuation in IDs, even though HTML4 did not. Whitespace characters are not allowed, so we now strip whitespace from IDs as well.
I'm using 3.3.0-alpha2.
I have
exports.info
and alsofunction info()
in my code. JSDoc correctly separates them as being static and inner, but i can't link to the second. They both have the sameid
attribute:info
. What probably should be isstatic-info
andinner-info
, for all methods, not just conflicts.The text was updated successfully, but these errors were encountered: