From 51aba138aa426abd37282081e40cb23481eeebea Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 26 Feb 2015 13:08:07 +0100 Subject: fix formatting of strikethrough on Kotlin website --- src/Formats/KotlinWebsiteFormatService.kt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Formats') diff --git a/src/Formats/KotlinWebsiteFormatService.kt b/src/Formats/KotlinWebsiteFormatService.kt index a5e9c022..3096c9de 100644 --- a/src/Formats/KotlinWebsiteFormatService.kt +++ b/src/Formats/KotlinWebsiteFormatService.kt @@ -23,6 +23,8 @@ public class KotlinWebsiteFormatService(locationService: LocationService, override public fun formatCode(code: String): String = "$code" + override fun formatStrikethrough(text: String): String = "$text" + override fun formatLink(text: String, href: String): String { return "${text}" } -- cgit