2

I'm using sbt doc to generate documentation for a Scala project.

Using the default settings the documentation automatically shows inherited members as in the following screenshot.

Showing all inherited

Ideally I would like to generate documentation which hides all the inherited members by default as below.

Hiding all inherited

How can I approach generating the documentation such that it only shows explicitly defined members?

stephenmuss
  • 2,445
  • 2
  • 20
  • 29

1 Answers1

0

scaladoc -help yields nothing germane, and neither does the source. You're out of luck, I'm afraid.

Ed Staub
  • 15,480
  • 3
  • 61
  • 91
  • Yes `scaladoc -help` doesn't help a whole lot. However, I have seen other documentation which achieves the effect I am after. There must be a way to do it. – stephenmuss Feb 21 '15 at 08:33