From 8a65a7ab62e4567bbb20cececcad88eb9ac396d9 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 27 Feb 2015 16:58:27 +0100 Subject: handle @code and @literal tags in javadoc --- src/Utilities/Html.kt | 1 - 1 file changed, 1 deletion(-) (limited to 'src/Utilities') diff --git a/src/Utilities/Html.kt b/src/Utilities/Html.kt index 9630c8cb..ce3a1982 100644 --- a/src/Utilities/Html.kt +++ b/src/Utilities/Html.kt @@ -6,4 +6,3 @@ package org.jetbrains.dokka * Replaces & with &, < with < and > with > */ public fun String.htmlEscape(): String = replace("&", "&").replace("<", "<").replace(">", ">") - -- cgit