Closed
Description
Previous ID | SR-15410 |
Radar | rdar://63987302 |
Original Reporter | rnikander (JIRA User) |
Type | Bug |
Attachment: Download
Additional Detail from JIRA
Votes | 11 |
Component/s | Swift-DocC |
Labels | Bug |
Assignee | @theMomax |
Priority | Medium |
md5: 0a7941d59b134a8d6fcab0d5853ef0b5
Issue Description:
I have a Swift package in which I define some extensions on matrix types like simd_float3x3
. I tried to use DocC to create documentation for this package, but I can't get it to show the extensions.
Example of code in my module that I can't document:
extension simd_float3x3 {
/// Format the matrix with a default style
public func formatted() -> String { ... }
I guessed at some syntax in the markdown files. For example: ``simd_float3x3/formatted``
. But I'm not familiar enough with DocC yet to have any suggestions on what the syntax should be.