jazzy icon indicating copy to clipboard operation
jazzy copied to clipboard

Soulful docs for Swift & Objective-C

Results 109 jazzy issues
Sort by recently updated
recently updated
newest added

Say we have something like this: ```swift class A { func foo() {} } class B: A {} ``` We would then expect `B.foo()` to auto-link to `A.foo()`, which currently...

enhancement

I have noticed that `output` and `readme` seem to be relative to the config file but `documentation` and `abstract` are relative to the current working directory. My setup: ``` myproject...

bug

I don't necessarily want information like author and date of symbols in public documentation. Therefore, I'd need to tell Jazzy to just drop `- Author:` and `- Date:` callouts unless...

enhancement

Currently, there is no efficient way to go from a protocol to all conforming classes and structs, or from classes to all subclasses. This connection is essential when exploring an...

enhancement

Say I have a file `My Guide.md` that I include in a custom category. I have to name it thus to that I get `My Guide` in the menu of...

enhancement

Currently, you can use the `:nodoc:` token to exclude specific declarations but in cases where you have to do many overrides (such as a framework of `UIView`s), completely ignoring all...

enhancement
feature

This may be controversial, but I think raw values of enums are *designed* to be internal: we use the enum to have the abstraction after all. So instead of ```swift...

enhancement

Say I have a setup similar to this: ```swift internal protocol Foo {} public protocol Bar public struct FooBar: Foo, Bar {} ``` I do not want the documentation of...

I collect symbols in custom categories. Despite the fact that they are all `public`, I get "Public" headers in the index list. Exhibit A: ![screen shot 2017-04-24 at 17 45...

enhancement

Currently, Jazzy does not visually distinguish cases and members of enums. It would be nice to have special treatment for enum cases. Since there is no distinguishing criterion between "enum...

enhancement