aboutsummaryrefslogtreecommitdiff
path: root/src/Utilities/Html.kt
blob: 9630c8cb6dc817f80d606f75d5661129a9956a7d (plain)
1
2
3
4
5
6
7
8
9
package org.jetbrains.dokka


/**
 * Replaces symbols reserved in HTML with their respective entities.
 * Replaces & with &amp;, < with &lt; and > with &gt;
 */
public fun String.htmlEscape(): String = replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;")