From 8456d9bff730aeb83f77d6dfabe66ad89ae63ce8 Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Mon, 20 Nov 2023 17:47:52 +0100 Subject: [PATCH] Contributor paragraph should not contain bullet points --- src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt index 4b03679..cfd2dd7 100644 --- a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt +++ b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt @@ -1162,9 +1162,9 @@ class RecipeMarkdownGenerator : Runnable { writeln(recipeDescriptor.contributors.stream() .map { contributor: Contributor -> if (contributor.email.contains("noreply")) { - "* " + contributor.name + contributor.name } else { - "* [" + contributor.name + "](mailto:" + contributor.email + ")" + "[" + contributor.name + "](mailto:" + contributor.email + ")" } }.collect(Collectors.joining(", ")) )