File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed
scaladoc-testcases/src/example Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ package example
2
+
3
+ /** Groups
4
+ * @groupname foo Foo-group
5
+ * @groupdesc bar Description of group
6
+ * bar
7
+ */
8
+ class Groups {
9
+ /** Method in group foo
10
+ * @group foo
11
+ */
12
+ def groupFoo : String = ???
13
+
14
+ /** Method in group bar
15
+ * @group bar
16
+ */
17
+ def groupBar : String = ???
18
+
19
+ /** Method in group bazz
20
+ * @group bazz
21
+ */
22
+ def groupBazz : String = ???
23
+ }
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ class MarkdownCommentParser(repr: Repr)(using dctx: DocContext)
178
178
def stringToMarkup (str : String ) =
179
179
MarkdownParser .parseToMarkdown(str, markdown.DocFlexmarkParser (resolveLink))
180
180
181
- def markupToString (t : mdu.Node ): String = t.toString()
181
+ def markupToString (t : mdu.Node ): String = t.getChars(). toString()
182
182
183
183
def markupToDokka (md : mdu.Node ): DocPart = md
184
184
You can’t perform that action at this time.
0 commit comments