Files
openide/java/java-tests/testData/codeInsight/javadocIG/leadingSpacesInPre.java
Nikita Eshkeev 7bdf6105ad [javadoc] IDEA-257214 Extra indent in documentation for pre - block
Check if a whitespace is followed by a leading asterisk and if so, remove the whitespaces between the last newline character and the asterisk from the whitespace.

GitOrigin-RevId: 605753eeb1f894f1bd0da97203ab167ff6aa09d7
2021-12-08 16:57:36 +00:00

14 lines
223 B
Java

/**
* Some comment
* <pre>
* ---------
* PRE-block1
* PRE-block2
* PRE-block3
* PRE-block4
* ---------
* </pre>
*/
class Main {
}