Closed
Description
Compiler version
3.3.0
The --doc-syntax:wiki
flag, or alternatively @syntax wiki
can be used to tell scaladoc3 to render with the old scaladoc2-style wiki syntax instead of markdown. However, while *hi*
or _hi_
works with markdown syntax, ''hi''
does nothing with wiki syntax: with markdown syntax turned on it will literally render as ''hi''
, and with wiki syntax on it will render as hi
but without italics.
Expectation
With wiki syntax enabled, ''hi''
should behave the same as *hi*
, _hi_
in markdown syntax.