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(", "))
                 )