Fix for KT-13818
Javadoc @code conversion
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/**
|
||||
* `A<B`
|
||||
* `A<B`
|
||||
*/
|
||||
class C
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Start.
|
||||
* Plain quote: 'quoted'
|
||||
* KT-13818: {@code 'quoted'}
|
||||
* Code: {@code someCode()}
|
||||
* Operators: {@code a > b}
|
||||
* String: {@code str = "String"}
|
||||
* Generic: {@code List<T>}
|
||||
* End.
|
||||
*/
|
||||
public class Quote {}
|
||||
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Start.
|
||||
* Plain quote: 'quoted'
|
||||
* KT-13818: `'quoted'`
|
||||
* Code: `someCode()`
|
||||
* Operators: `a > b`
|
||||
* String: `str = "String"`
|
||||
* Generic: `List<T>`
|
||||
* End.
|
||||
*/
|
||||
class Quote
|
||||
Reference in New Issue
Block a user