Closed z3dev closed 2 years ago
Hmm, I am sorry, but I don't think we can do that. If JSDoc parser recognizes them as static ones, don't think it would be a good idea to change that logic. But I guess you can inject CSS or even JS to hide those specific portions yourself when displaying docs?
But I guess you can inject CSS or even JS to hide those specific portions yourself when displaying docs?
Could do if the section is identified... I’ll check.
If JSDoc parser recognizes them as static ones, don't think it would be a good idea to change that logic.
I’m not sure the logic of JSDOC matters, as there are other options that ‘hide’ sections, etc.
But I guess you can inject CSS or even JS to hide those specific portions yourself when displaying docs?
Could do if the section is identified... I’ll check.
Nope. No can do. The class 'type-signiture' is being used in other parts of the document. Hiding this class will hide other parts as well.
If there was a small change to make this span unique then a CSS change could happen.
Sure, not CSS, but javascript? I think it should be possible. To select all needed elements by class and iterate through them to check contents (with jquery would have been even easier :) )
But overall, this seems to be such specific customization, I really don't see a place for it much. But I would accept a PR for adding a specific CSS class or data attribute to those tags.
No time, sorry. Just add this to the TODO list for the next version. There's no hurry.
First, thanks for this very nice template. Love it.
However, we have a small issue with the documentation. In general, our 'api' is assembled from smaller functions using an index, that also exports the functions as part of the API.
The documentation produced always has the 'static' keyword in front of the documentation.
(static) offset(options, …geometry) → {Object|Array}
In our case, it would be nice to disable the 'static' keyword from appearing in the documentation.