diff --git a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt index edb72b0..60ceab4 100644 --- a/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt +++ b/src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt @@ -809,7 +809,6 @@ class RecipeMarkdownGenerator : Runnable { ) } - // Options if (recipeDescriptor.options.isNotEmpty()) { writeln( @@ -843,7 +842,7 @@ class RecipeMarkdownGenerator : Runnable { writeln( """ | `${option.type}` | ${option.name} | $description | $example | - """.trimIndent() + """.trimIndent().replace("\n", "
") ) } newLine()