From cd819f205ec36f66946bb3f73cabe024161ec7c6 Mon Sep 17 00:00:00 2001 From: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Date: Mon, 28 Sep 2020 09:10:52 +0200 Subject: [PATCH] use correct template library (#2077) fixes #2073 --- pkg/documentation/generator/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/documentation/generator/main.go b/pkg/documentation/generator/main.go index 38c62f309..19ed26e7d 100644 --- a/pkg/documentation/generator/main.go +++ b/pkg/documentation/generator/main.go @@ -3,9 +3,9 @@ package generator import ( "bytes" "fmt" - "html/template" "io" "os" + "text/template" "github.com/SAP/jenkins-library/pkg/config" )