Say I have two functions that are documented like this:
/**
Fetches something.
- PostCondition: 'displaySomething()' is called by the presenter
*/
func fetchSomething() {
interactor?.fetchSomething()
}
/**
Displays something.
- Parameter viewModel: A viewmodel containing the parsed data
*/
func displaySomething(viewModel: ViewModel) {
text = viewModel.text
}
Is there a way to make the reference to displaySomething() in the fetchSomething() documentation link to the actual function so that it is clickable in quick help? As far as I can tell it is currently only possible to link to web pages.