package org.jetbrains.dokka import java.net.URI /** * Replaces symbols reserved in HTML with their respective entities. * Replaces & with &, < with < and > with > */ fun String.htmlEscape(): String = replace("&", "&").replace("<", "<").replace(">", ">") // A URI consists of several parts (as described in https://docs.oracle.com/javase/7/docs/api/java/net/URI.html ): // [scheme:][//authority][path][?query][#fragment] // // The anchorEnchoded() function encodes the given string to make it a legal value for fun String.anchorEncoded(): String { return URI(null, null, this).getRawFragment() }