IDEA-139946 support HTML links in generated Quick Docs

This commit is contained in:
Dmitry Batrak
2015-05-19 13:26:05 +03:00
parent 8923219dfd
commit dc2b0581e2
7 changed files with 96 additions and 1 deletions
@@ -0,0 +1,2 @@
<html><head><base href="placeholder"> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><PRE>class <b>htmlLink</b>
extends <a href="psi_element://java.lang.Object"><code>Object</code></a></PRE> <a href="psi_element://other">link</a></body></html>
@@ -0,0 +1,2 @@
/** <a href="other.html">link</a> */
class htmlLink {}
@@ -0,0 +1 @@
class other {}
@@ -0,0 +1,2 @@
<html><head><base href="placeholder"> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b>pack</b></small><PRE>class <b>htmlLinkDeep</b>
extends <a href="psi_element://java.lang.Object"><code>Object</code></a></PRE> <a href="psi_element://other">link</a></body></html>
@@ -0,0 +1,4 @@
package pack;
/** <a href="../other.html">link</a> */
class htmlLinkDeep {}