Make new html entry from plain text. @param text raw string text @return clipboard entry
(String text)
| 38 | * @return clipboard entry |
| 39 | */ |
| 40 | @NotNull @SneakyThrows |
| 41 | public static ClipboardEntry makeHTML(String text) { |
| 42 | return makeString(ClipboardFormat.HTML, text); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * <p>Make new rtf entry from plain text.</p> |
nothing calls this directly
no test coverage detected