-
Notifications
You must be signed in to change notification settings - Fork 14
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
polyglot
gives me a blank documentation
#26
Comments
I'm confused: are you trying to document JavaScript? If you'd like to turn off inference, there's a troubleshooting topic for that - the gist is to use the name tag to turn off inference in a standard way. |
Well, for
Now, when you generate the documentation, you get the following function definitions within the generated HTML:
It is simply inaccurate to have the definition of the getter. |
Can you try using |
That might be possible, yes. But on the other hand, then I'll be losing that object methods are always in a tree-like fashion below the object. Also, with |
You can use the I'll see if a test case can confirm the loss of parameter lists for this example. That might be because there's no |
Wow thank you! This worked perfectly. Now my only problem is that overloaded constructor will re-create the same class with all members twice. I have tried adding a |
I have the following configuration in my
gulpfile.js
:When I add
polyglot: true
after theshallow: true
, the generated documentation becomes blank. I do not want the JavaScript to be analyzed.One particular reason is that overloaded functions have a lot of
argN: any
at the end if you leave it out in the documentation.The text was updated successfully, but these errors were encountered: