Closed
Description
Compiler version
3.1.1
Minimized code
object stuff:
/** @group foo */ def foo = 10
/** @group bar */ def bar = 20
In build.sbt
:
Compile / doc / scalacOptions ++= List("-groups")
As specified at https://dotty.epfl.ch/docs/usage/scaladoc/docstrings.html#member-grouping-tags
Output
Expectation
I expect the elements to be grouped to foo
and bar
categories.
Workaround
Put the following in build.sbt
:
Compile / doc / scalacOptions ++= List("-groups", "-comment-syntax", "wiki")