swift-doc
swift-doc copied to clipboard
Feature request: Declarations with a documentation comment containing `:nodoc:` are excluded from the documentation.
would be great to add this to swift-doc.
jazzy hides declarations commented with :nodoc: like this
def self.should_document?(doc)
return false if doc['key.doc.comment'].to_s.include?(':nodoc:')