We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f70c19 commit a941aa8Copy full SHA for a941aa8
src/main/kotlin/org/openrewrite/ListsOfRecipesWriter.kt
@@ -255,16 +255,13 @@ class ListsOfRecipesWriter(
255
for ((artifact, recipes) in recipesByArtifact) {
256
writeln("## ${artifact}\n")
257
258
- for (recipe in recipes.sortedBy { it.displayName })
+ for (recipe in recipes.sortedBy { it.displayName }) {
259
writeln(
260
"* [${recipe.descriptor.displayNameEscaped()}](/recipes/${
261
- RecipeMarkdownGenerator.Companion.getRecipePath(
262
- recipe.descriptor
263
- )
264
- }.md) - _${
265
- recipe.descriptor.descriptionEscaped()
266
- }_"
+ RecipeMarkdownGenerator.Companion.getRecipePath(recipe.descriptor)
+ }.md) - _${recipe.descriptor.descriptionEscaped()}_"
267
)
+ }
268
}
269
270
0 commit comments