mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
workaround for <p/> inside <pre> in javadoc preview in JEditorPane (IDEA-127430)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://Test"><code>Test</code></a></b></small><PRE>public <a href="psi_element://java.lang.String"><code>String</code></a> <b>field = null</b></PRE>
|
||||
<pre>
|
||||
foo
|
||||
<p></p>
|
||||
bar
|
||||
</pre></body></html>
|
||||
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
/**
|
||||
* <pre>
|
||||
* foo
|
||||
* <p/>
|
||||
* bar
|
||||
* </pre>
|
||||
*/
|
||||
public String field = null;
|
||||
}
|
||||
Reference in New Issue
Block a user