Есть ли способ временно визуализировать разметку HTML в комментариях к документации в IntelliJ IDEA? Я хочу иметь возможность сделать это, потому что он упрощает чтение документации. Например, рассмотрим следующие фрагменты из источника JUnit:IntelliJ IDEA - визуализация HTML-разметки в Java Документация Комментарии
/**
* The <code>Test</code> annotation tells JUnit that the <code>public void</code> method
* ...
* ...
* <p>
* A simple test looks like this:
* <pre>
* public class Example {
* <b>@Test</b>
* public void method() {
* org.junit.Assert.assertTrue(new ArrayList().isEmpty());
* }
* }
* </pre>
* <p>
* The <code>Test</code> annotation supports two optional parameters.
* The first, <code>expected</code>, declares that a test method should throw
* ...
* ...
* <pre>
* @Test(<b>expected=IndexOutOfBoundsException.class</b>) public void outOfBounds() {
* new ArrayList<Object>().get(1);
* }
* </pre></p>
* <p>
* The second optional parameter, <code>timeout</code>, causes a test to fail if it takes
* longer than a specified amount of clock time (measured in milliseconds). The following test fails:
* <pre>
* @Test(<b>timeout=100</b>) public void infinity() {
* while(true);
* }
* </pre>
* <b>Warning</b>: while <code>timeout</code> is useful to catch and terminate
* infinite loops, it should <em>not</em> be considered deterministic. The
* ...
* ...
* <pre>
* @Test(<b>timeout=100</b>) public void sleep100() {
* Thread.sleep(100);
* }
* </pre>
*
*
* @since 4.0
*/
Все разметки, не говоря уже о HTML кодировок, делает его немного трудно разобрать документацию.
Я попытался найти способ сделать это, но ничего значимого не оказалось. Может быть, я не использую правильные ключевые слова?