This repository was archived by the owner on Jun 1, 2023. It is now read-only.
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Add the ability to hide certain properties/methods #101
Open
Description
When you subclass a class, you sometimes have to implement some required methods or you want to override a property. These have to be marked as public
, and hence shows up in the docs. It would be nice swift-doc
could have a special comment or something to hide it.
When using TypeScript and type-doc
, I can do something like this: https://github.com/sindresorhus/ow/blob/816e66c4837fc93ceb92c0480752020625e3b68d/source/predicates/predicate.ts#L7-L9
Jazzy supports this with a /// :nodoc:
comment.
Some examples of what I would hide from my docs: