4

Swift has some ability to extract comments and documentation from a module.

Automatically generate the Swift interface for a compiled module

echo ":print_module CoreGraphics" | xcrun swift -deprecated-integrated-repl 

How can I use these tools to print documentation for my own module?

Specifically, I'd like to use it in C.I. as a test of whether my modules are fully documented.

William Entriken
  • 37,208
  • 23
  • 149
  • 195

1 Answers1

0

$ sudo gem install jazzy

$ jazzy

in the directory containing project file for the framework of your making per this: https://www.appcoda.com/swift-markdown/

Anton Tropashko
  • 5,486
  • 5
  • 41
  • 66