swift-doc icon indicating copy to clipboard operation
swift-doc copied to clipboard

Link to nested type

Open slashmo opened this issue 4 years ago • 0 comments

Related to #235, it would be nice if nested types would be linked to:

enum Namespace {
  struct A {}
}

/// - Returns a `Namespace.A`.
func example() -> Namespace.A { Namespace.A() }

Here, the generated HTML currently links the "Namespace" part in the code snippet for the example() method, but not the "A" part.

slashmo avatar Mar 29 '21 10:03 slashmo