Hi!
Very nice proposal, David! I definitely agree that making separate calls to docc convert
should prove to be way more convenient for manual usage but especially when integrating these features into the SPM DocC plugin and IDEs. I also think that we should spend significant time on those to make usage of cross target documentation as easy and convenient as possible.
I'm not 100% sure if I understood your explanation of the merge
command correctly. When passing only pre-built documentation archives to the command, those would all be hosted next to each other - independently of their dependency hierarchy - as direct children of documentation
, correct?
However, what do you mean by this?
Would all pages from the pre-built documentation archives still be present at the same paths as compared to when there is not documentation catalog passed to the command? Or would the new archive only include those pages that are (transitively) linked to from the new documentation catalog? I guess the "target" corresponding to the new documentation catalog would also be hosted next to the targets from the pre-built archives, wouldn't it?
I also agree with the leading slash syntax as a shorthand for absolute links.
However, I think it would be beneficial to also allow (sufficiently qualified, i.e. starting with a target name) relative links to be used for referring to pages from other targets. This results in relative links behaving just like Swift code, where a local extension to external types can shadow the original member. This point already came up in my proposal-discussion on how to Document Extensions to External Types Using DocC :
Just for completeness: my PR from the extension topic already brings support for absolute symbol links in Swift-DocC: https://github.com/apple/swift-docc/pull/335.
I don't think linking to two different versions or even branches of the same target is a very common requirement, however, one could also solve this problem by embedding the version/branch name in the target name. This could be done in the configuration file proposed in the use-case thread like this:
- name: Logging
baseURL: "https://apple.github.io/swift-log/current/documentation/Logging"
- name: Logging_1_3_0
baseURL: "https://apple.github.io/swift-log/v1.3.0/documentation/Logging"
- name: Logging_main
baseURL: "https://apple.github.io/swift-log/main/documentation/Logging"
Solving this on a target level could make sense since we're already building documentation on a per-target (not per-package) basis.