(String documentation)
| 717 | } |
| 718 | return ""; |
| 719 | } |
| 720 | |
| 721 | @HiddenInAutocomplete |
| 722 | static public String format(String documentation) { |
| 723 | String doc = MarkdownToHTML.convert(documentation); |
| 724 | doc = doc.trim(); |
| 725 | if (doc.startsWith("<p>") && doc.endsWith("</p>")) { |
| 726 | doc = doc.substring(0, doc.length() - 4).replaceFirst("<p>", ""); |
| 727 | } |
| 728 | return doc; |
| 729 | } |
| 730 |
no test coverage detected