I want to lint my documentation without having to run vale checks throughout the code. So I created "testing-docs.md", added content like "This is a testing document for linting checks."
Now in my class, I have added my documentation in comment like stated by Apple.
/// <testing-docs.md>
/// -Parameters:
/// - token: conn123
/// - payload: nothing for now
/// - fromViewController: <#fromViewController description#>
/// - completion: <#completion description#>
Is there a way that instead of <testing-docs.md>, I get the file's content displayed "This is a testing document for linting checks."
I don't want to do it manually because I want to lint content separately.
I have multiple md files.