From 337a1659349f885dec44d40d8790ce18fd64e831 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 24 Jul 2019 23:01:29 +0200 Subject: [PATCH] :ambulance: Fixes type links in configuration blocks (#9968) --- plugins/configuration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/configuration.rb b/plugins/configuration.rb index dd4975769222..5a5b94b7bfae 100644 --- a/plugins/configuration.rb +++ b/plugins/configuration.rb @@ -37,7 +37,7 @@ def type_link(type, component: nil) type.strip! if TYPE_LINKS.include? type.downcase url = TYPE_LINKS[type.downcase] % {component: component} - "[%s](%s)" % [type, url] + "%s" % [url, type] else type end